| Commit message (Expand) | Author | Age | Files | Lines |
* | patch 680474 that fixes bug 679880: compile/eval/exec refused utf-8 bom | Just van Rossum | 2003-02-09 | 2 | -2/+6 |
|
|
* | Rename 'proto' keyword arg to 'protocol' . Greg Ward's suggestion. | Guido van Rossum | 2003-02-09 | 1 | -17/+17 |
|
|
* | Remove unused variable. | Guido van Rossum | 2003-02-09 | 2 | -2/+1 |
|
|
* | C Code: | Raymond Hettinger | 2003-02-09 | 4 | -199/+360 |
|
|
* | SF patch #683187, fix universal newline problems on error | Neal Norwitz | 2003-02-09 | 1 | -1/+4 |
|
|
* | Apply logistix's patch from | Michael W. Hudson | 2003-02-08 | 1 | -3/+43 |
|
|
* | The Python implementation of datetime was changed in ways that no longer | Tim Peters | 2003-02-08 | 1 | -31/+10 |
|
|
* | timedelta comparison and datetime addition: as the Python implementation | Tim Peters | 2003-02-08 | 1 | -4/+4 |
|
|
* | Fix compatibility for earlier versions of Python (than 2.3), which | Barry Warsaw | 2003-02-08 | 2 | -5/+15 |
|
|
* | Comparison for timedelta, time, date and datetime objects: __eq__ and | Tim Peters | 2003-02-07 | 4 | -58/+155 |
|
|
* | Merge the test part of the below checkin to the sandbox and Zope3, so | Guido van Rossum | 2003-02-07 | 1 | -0/+8 |
|
|
* | Reserve a range for Zope, not specifically for Zope 3. | Guido van Rossum | 2003-02-07 | 1 | -1/+1 |
|
|
* | Fix SF bug #642168, help() fails for some builtin topics | Neal Norwitz | 2003-02-07 | 1 | -2/+2 |
|
|
* | Update URL | Andrew M. Kuchling | 2003-02-07 | 1 | -1/+1 |
|
|
* | SF patch #682514, mmapmodule.c write fix for LP64 executables | Neal Norwitz | 2003-02-07 | 1 | -1/+1 |
|
|
* | Somehow, copy() of a classic class object was handled | Guido van Rossum | 2003-02-07 | 2 | -1/+2 |
|
|
* | Add support for copy_reg.dispatch_table. | Guido van Rossum | 2003-02-07 | 2 | -48/+77 |
|
|
* | Made AskFile* dialogs movable-modal by default, by providing a dummy | Jack Jansen | 2003-02-07 | 1 | -10/+26 |
|
|
* | Add __getnewargs__ method to classes that need it. | Guido van Rossum | 2003-02-07 | 1 | -0/+4 |
|
|
* | - make some links into the reference documentation relative for | Fred Drake | 2003-02-07 | 1 | -30/+32 |
|
|
* | * Eliminated tuple re-use in imap(). Doing it correctly made the code | Raymond Hettinger | 2003-02-07 | 1 | -62/+30 |
|
|
* | SF bug #681003: itertools issues | Raymond Hettinger | 2003-02-07 | 3 | -6/+91 |
|
|
* | Fix SF bug #675259, os.environ leaks under FreeBSD and Mac OS X | Neal Norwitz | 2003-02-07 | 1 | -1/+7 |
|
|
* | Integrate the patch from expat.h 1.51; needed for some C compilers. | Fred Drake | 2003-02-07 | 1 | -21/+24 |
|
|
* | SF bug 666444: 'help' makes linefeed only under Win32. | Tim Peters | 2003-02-07 | 1 | -2/+2 |
|
|
* | Got rid of macfs. | Jack Jansen | 2003-02-06 | 1 | -5/+4 |
|
|
* | Got rid of macfs and FSSpecs. | Jack Jansen | 2003-02-06 | 1 | -4/+3 |
|
|
* | Added a note about getting rid of macfs usage (MacPython). | Jack Jansen | 2003-02-06 | 1 | -0/+4 |
|
|
* | Got rid of FSSpecs. | Jack Jansen | 2003-02-06 | 1 | -29/+28 |
|
|
* | Move _better_reduce from copy.py to copy_reg.py, and also use it in | Guido van Rossum | 2003-02-06 | 3 | -163/+83 |
|
|
* | Got rid of macfs and FSSpecs in general (pathnames or FSRefs are now | Jack Jansen | 2003-02-06 | 9 | -68/+55 |
|
|
* | Fix a bug in the way __getnewargs__ was handled. | Guido van Rossum | 2003-02-06 | 2 | -1/+19 |
|
|
* | Update doc to reflect code changes for obsoleting use_statcache parameter | Neal Norwitz | 2003-02-06 | 1 | -8/+3 |
|
|
* | Use new name for GetoptError, and pass it two arguments | Andrew M. Kuchling | 2003-02-06 | 1 | -5/+5 |
|
|
* | Support all the new stuff supported by the new pickle code: | Guido van Rossum | 2003-02-06 | 2 | -13/+109 |
|
|
* | A few naughty external scripts do 'raise getopt.error, "blah"', and | Andrew M. Kuchling | 2003-02-06 | 1 | -1/+1 |
|
|
* | Add DeprecationWarning when use_statcache argument is supplied | Andrew M. Kuchling | 2003-02-06 | 1 | -4/+12 |
|
|
* | Remove a debug print statement. | Guido van Rossum | 2003-02-06 | 1 | -1/+0 |
|
|
* | Remove another lie. | Michael W. Hudson | 2003-02-06 | 1 | -4/+2 |
|
|
* | Correct lie about METH_NOARGS functions. | Michael W. Hudson | 2003-02-06 | 1 | -5/+5 |
|
|
* | Support __reduce__ returning a 4-tuple or 5-tuple. | Guido van Rossum | 2003-02-06 | 2 | -1/+56 |
|
|
* | Typo fixes | Andrew M. Kuchling | 2003-02-06 | 1 | -2/+2 |
|
|
* | A test suite for the copy module. This should provide full code | Guido van Rossum | 2003-02-06 | 1 | -0/+384 |
|
|
* | [Bug #680494] filecmp.py uses obsolete statcache module. | Andrew M. Kuchling | 2003-02-06 | 1 | -17/+9 |
|
|
* | Add test suite for filecmp.py, after some discussion on bug #680494. | Andrew M. Kuchling | 2003-02-06 | 1 | -0/+128 |
|
|
* | SF bug 680864: test_datetime fails for non-unix epoch | Tim Peters | 2003-02-06 | 1 | -12/+11 |
|
|
* | No need for a continuation line. | Jeremy Hylton | 2003-02-06 | 1 | -2/+1 |
|
|
* | Replace hasattr() + getattr() with single getattr() and default value. | Jeremy Hylton | 2003-02-06 | 1 | -2/+1 |
|
|
* | Clarify that __module__ applies to various type of functions. | Guido van Rossum | 2003-02-06 | 1 | -6/+7 |
|
|
* | Add news item about __module__ attribute on functions. | Jeremy Hylton | 2003-02-06 | 1 | -0/+8 |
|
|