2001-09-22 |
Fred Drake | Note that files are iterable; describe what the iterato... |
commit | commitdiff | tree | snapshot |
2001-09-22 |
Barry Warsaw | Converted test_StringIO.py to use unittest, so |
commit | commitdiff | tree | snapshot |
2001-09-22 |
Fred Drake | Start of a test to make sure the profiler/tracer suppor... |
commit | commitdiff | tree | snapshot |
2001-09-21 |
Guido van Rossum | Add the __getattr__ hook back. The rules are now: |
commit | commitdiff | tree | snapshot |
2001-09-21 |
Fred Drake | Bump version number. |
commit | commitdiff | tree | snapshot |
2001-09-21 |
Fred Drake | Added reference to Tutorial section on user-defined... |
commit | commitdiff | tree | snapshot |
2001-09-21 |
Fred Drake | Exceptions in interactive examlpes did not always inclu... |
commit | commitdiff | tree | snapshot |
2001-09-21 |
Guido van Rossum | reportdiff(): print a "plain diff" style diff. |
commit | commitdiff | tree | snapshot |
2001-09-21 |
Guido van Rossum | Oops. I didn't expect that some tests (test_cookie... |
commit | commitdiff | tree | snapshot |
2001-09-21 |
Guido van Rossum | Change the way unexpected output is reported: rather... |
commit | commitdiff | tree | snapshot |
2001-09-21 |
Guido van Rossum | Change the name of the __getattr__ special method for... |
commit | commitdiff | tree | snapshot |
2001-09-21 |
Guido van Rossum | Make these modules work when Python is compiled without... |
commit | commitdiff | tree | snapshot |
2001-09-21 |
Guido van Rossum | Add tests for repr() of strings containing string quote... |
commit | commitdiff | tree | snapshot |
2001-09-21 |
Guido van Rossum | Fix a bug in rendering of \\ by repr() -- it rendered... |
commit | commitdiff | tree | snapshot |
2001-09-21 |
Guido van Rossum | Test basic functioning of unicode repr(). (If this... |
commit | commitdiff | tree | snapshot |
2001-09-20 |
Guido van Rossum | Add a small test to verify that member and getset descr... |
commit | commitdiff | tree | snapshot |
2001-09-20 |
Guido van Rossum | Add optional docstrings to getset descriptors. Fortuna... |
commit | commitdiff | tree | snapshot |
2001-09-20 |
Guido van Rossum | Change testdescr.py to use the test_main() approach. |
commit | commitdiff | tree | snapshot |
2001-09-20 |
Fred Drake | Change the PyUnit-based tests to use the test_main... |
commit | commitdiff | tree | snapshot |
2001-09-20 |
Guido van Rossum | Add optional docstrings to member descriptors. For... |
commit | commitdiff | tree | snapshot |
2001-09-20 |
Fred Drake | Fill in a few more descriptions for xml.parsers.expat. |
commit | commitdiff | tree | snapshot |
2001-09-20 |
Tim Peters | Document new file() constructor, with the body of open... |
commit | commitdiff | tree | snapshot |
2001-09-20 |
Fred Drake | Document all the Py*_CheckExact() functions. |
commit | commitdiff | tree | snapshot |
2001-09-20 |
Guido van Rossum | PyLocale_setlocale(): silence compiler warning about... |
commit | commitdiff | tree | snapshot |
2001-09-20 |
Marc-André... | Fix Unicode .join() method to raise a TypeError for... |
commit | commitdiff | tree | snapshot |
2001-09-20 |
Marc-André... | Update test output after the unicode() change. |
commit | commitdiff | tree | snapshot |
2001-09-20 |
Jeremy Hylton | Update description of Tools/compiler |
commit | commitdiff | tree | snapshot |
2001-09-20 |
Jeremy Hylton | Remove setup.py, unnecessary since compiler package... |
commit | commitdiff | tree | snapshot |
2001-09-20 |
Jeremy Hylton | Moved to Tools/compiler along with astgen.py |
commit | commitdiff | tree | snapshot |
2001-09-20 |
Guido van Rossum | _PyObject_GetDictPtr(): when the offset is negative... |
commit | commitdiff | tree | snapshot |
2001-09-20 |
Marc-André... | Note about enhancements to unicode(). |
commit | commitdiff | tree | snapshot |
2001-09-20 |
Marc-André... | Python part of the UTF-7 codec by Brian Quinlan. |
commit | commitdiff | tree | snapshot |
2001-09-20 |
Marc-André... | Implement the changes proposed in patch #413333. unicod... |
commit | commitdiff | tree | snapshot |
2001-09-20 |
Marc-André... | Patch #435971: UTF-7 codec by Brian Quinlan. |
commit | commitdiff | tree | snapshot |
2001-09-20 |
Marc-André... | Patch #462635 by Andrew Kuchling correcting bugs in... |
commit | commitdiff | tree | snapshot |
2001-09-20 |
Tim Peters | SF bug [#463093] File methods need doc strings. |
commit | commitdiff | tree | snapshot |
2001-09-20 |
Barry Warsaw | run_suite(): Oops, update a docstring. |
commit | commitdiff | tree | snapshot |
2001-09-20 |
Barry Warsaw | run_suite(): Factor this out of run_unittest() for... |
commit | commitdiff | tree | snapshot |
2001-09-20 |
Tim Peters | Since inspect.isfunction(obj) is a precondition for... |
commit | commitdiff | tree | snapshot |
2001-09-20 |
Tim Peters | Ensure that isfunction(obj) and (the new) ismethoddescr... |
commit | commitdiff | tree | snapshot |
2001-09-20 |
Guido van Rossum | News about compiler and pydoc. |
commit | commitdiff | tree | snapshot |
2001-09-20 |
Guido van Rossum | AFAICT pydoc/inspect do the right thing again. |
commit | commitdiff | tree | snapshot |
2001-09-20 |
Tim Peters | After much thrashing, I believe this is a truly minimal... |
commit | commitdiff | tree | snapshot |
2001-09-20 |
Tim Peters | Install the compiler package under Lib. |
commit | commitdiff | tree | snapshot |
2001-09-20 |
Jeremy Hylton | The compiler package is now part of the standard library. |
commit | commitdiff | tree | snapshot |
2001-09-19 |
Martin v. Löwis | Patch #461321: Support None as a timeout in poll2 and... |
commit | commitdiff | tree | snapshot |
2001-09-19 |
Martin v. Löwis | Patch #462849: Pass Unicode objects to file's .write... |
commit | commitdiff | tree | snapshot |
2001-09-19 |
Guido van Rossum | Keep tabnanny happy. |
commit | commitdiff | tree | snapshot |
2001-09-19 |
Marc-André... | Fixed search function error reporting in the encodings... |
commit | commitdiff | tree | snapshot |
2001-09-19 |
Marc-André... | Docs and News item for the codecs.py additions. |
commit | commitdiff | tree | snapshot |
2001-09-19 |
Marc-André... | Added new helpers for easy access to codecs. Docs will... |
commit | commitdiff | tree | snapshot |
2001-09-19 |
Marc-André... | Fix for bug #462737. |
commit | commitdiff | tree | snapshot |
2001-09-19 |
Martin v. Löwis | Include ctype.h after Python.h. |
commit | commitdiff | tree | snapshot |
2001-09-19 |
Martin v. Löwis | Patch to bug #461753: Allow None in ExternalEntityParse... |
commit | commitdiff | tree | snapshot |
2001-09-19 |
Martin v. Löwis | Patch to bug #461754: CDATA should not undergo entity... |
commit | commitdiff | tree | snapshot |
2001-09-19 |
Guido van Rossum | Add additional coercion support for "self subtypes... |
commit | commitdiff | tree | snapshot |
2001-09-19 |
Guido van Rossum | Enable two checks for comparing a complex to a complex... |
commit | commitdiff | tree | snapshot |
2001-09-19 |
Guido van Rossum | complex_coerce(): add explicit PyComplex_Check() test... |
commit | commitdiff | tree | snapshot |
2001-09-18 |
Tim Peters | Enable some comparison tests that failed before. Still... |
commit | commitdiff | tree | snapshot |
2001-09-18 |
Guido van Rossum | Add a similar test for rich comparisons. |
commit | commitdiff | tree | snapshot |
2001-09-18 |
Fredrik Lundh | fixed #449964: sre.sub raises an exception if the templ... |
commit | commitdiff | tree | snapshot |
2001-09-18 |
Guido van Rossum | Hopefully fix 3-way comparisons. This unfortunately... |
commit | commitdiff | tree | snapshot |
2001-09-18 |
Guido van Rossum | Get rid of a superfluous space after "--" in the messag... |
commit | commitdiff | tree | snapshot |
2001-09-18 |
Andrew M. Kuchling | [Patch #462258] On Cygwin, don't build Tkinter unless... |
commit | commitdiff | tree | snapshot |
2001-09-18 |
Andrew M. Kuchling | Fix typo in comment |
commit | commitdiff | tree | snapshot |
2001-09-18 |
Martin v. Löwis | Properly repr classes without module names. |
commit | commitdiff | tree | snapshot |
2001-09-18 |
Guido van Rossum | Test for the safety check in wrap_cmpfunc(). |
commit | commitdiff | tree | snapshot |
2001-09-18 |
Guido van Rossum | wrap_cmpfunc(): added a safety check for the __cmp__... |
commit | commitdiff | tree | snapshot |
2001-09-18 |
Fredrik Lundh | an SRE bugfix a day keeps Guido away... |
commit | commitdiff | tree | snapshot |
2001-09-18 |
Fred Drake | Fix minor usage and consistency nits. |
commit | commitdiff | tree | snapshot |
2001-09-18 |
Guido van Rossum | All the news that fits, we print. |
commit | commitdiff | tree | snapshot |
2001-09-18 |
Guido van Rossum | SF bug #417176 (Martijn Pieters): MultiFile.read()... |
commit | commitdiff | tree | snapshot |
2001-09-18 |
Guido van Rossum | softspace(): be prepared to catch AttributeError as... |
commit | commitdiff | tree | snapshot |
2001-09-18 |
Tim Peters | This module didn't work at all anymore -- blew up with... |
commit | commitdiff | tree | snapshot |
2001-09-18 |
Guido van Rossum | Undo some (but not all) of the more lenient acceptance of |
commit | commitdiff | tree | snapshot |
2001-09-18 |
Guido van Rossum | Redo the PyMethod attributes using a dir()-friendly... |
commit | commitdiff | tree | snapshot |
2001-09-18 |
Guido van Rossum | - Some tests that check that assignments are not allowe... |
commit | commitdiff | tree | snapshot |
2001-09-18 |
Guido van Rossum | Sort the headers in PYTHON_HEADERS alphabetically.... |
commit | commitdiff | tree | snapshot |
2001-09-18 |
Tim Peters | Whitespace normalization. |
commit | commitdiff | tree | snapshot |
2001-09-18 |
Tim Peters | Make test_socketserver require the network resource. |
commit | commitdiff | tree | snapshot |
2001-09-18 |
Tim Peters | I don't expect test_socketserver to get skipped on... |
commit | commitdiff | tree | snapshot |
2001-09-18 |
Tim Peters | type_new(): Didn't compile anymore, due to change... |
commit | commitdiff | tree | snapshot |
2001-09-17 |
Tim Peters | Rework akin to test_threaded_import, so that this can... |
commit | commitdiff | tree | snapshot |
2001-09-17 |
Guido van Rossum | Rewrite function attributes to use the generic routines... |
commit | commitdiff | tree | snapshot |
2001-09-17 |
Jeremy Hylton | Track changes to compiler API |
commit | commitdiff | tree | snapshot |
2001-09-17 |
Jeremy Hylton | API change: |
commit | commitdiff | tree | snapshot |
2001-09-17 |
Jeremy Hylton | Re-created after change to astgen to calculate hardest_... |
commit | commitdiff | tree | snapshot |
2001-09-17 |
Jeremy Hylton | Fix calculation of hardest_arg. |
commit | commitdiff | tree | snapshot |
2001-09-17 |
Jeremy Hylton | Last set of change to get regression tests to pass |
commit | commitdiff | tree | snapshot |
2001-09-17 |
Guido van Rossum | Add support for restricting access based on restricted... |
commit | commitdiff | tree | snapshot |
2001-09-17 |
Jeremy Hylton | Add -p option to invoke Python profiler |
commit | commitdiff | tree | snapshot |
2001-09-17 |
Jeremy Hylton | Only print attributes that start with co_. |
commit | commitdiff | tree | snapshot |
2001-09-17 |
Jeremy Hylton | Handle more syntax errors. |
commit | commitdiff | tree | snapshot |
2001-09-17 |
Jeremy Hylton | Add utility to set filename attribute on all nodes |
commit | commitdiff | tree | snapshot |
2001-09-17 |
Fredrik Lundh | Brian Quinlan's XML-RPC server framework. |
commit | commitdiff | tree | snapshot |
2001-09-17 |
Jeremy Hylton | support true division |
commit | commitdiff | tree | snapshot |
2001-09-17 |
Andrew M. Kuchling | [Patch #462255, from Jason Tishler] Re-enables building... |
commit | commitdiff | tree | snapshot |
2001-09-17 |
Guido van Rossum | SF patch #461781 by Chris Lawrence: os.path.realpath... |
commit | commitdiff | tree | snapshot |
2001-09-17 |
Guido van Rossum | Add cross-compilation defaults to most AC_TRY_RUN value... |
commit | commitdiff | tree | snapshot |
2001-09-17 |
Tim Peters | PyObject_Dir(): Merge in __members__ and __methods__... |
commit | commitdiff | tree | snapshot |
next |