| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | SF bug #681003: itertools issues | Raymond Hettinger | 2003-02-07 | 1 | -0/+3 |
|
|
* | SF bug 666444: 'help' makes linefeed only under Win32. | Tim Peters | 2003-02-07 | 1 | -2/+2 |
|
|
* | Got rid of macfs and FSSpecs. | Jack Jansen | 2003-02-06 | 1 | -4/+3 |
|
|
* | Move _better_reduce from copy.py to copy_reg.py, and also use it in | Guido van Rossum | 2003-02-06 | 3 | -163/+83 |
|
|
* | Fix a bug in the way __getnewargs__ was handled. | Guido van Rossum | 2003-02-06 | 2 | -1/+19 |
|
|
* | 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 |
|
|
* | Support __reduce__ returning a 4-tuple or 5-tuple. | Guido van Rossum | 2003-02-06 | 2 | -1/+56 |
|
|
* | 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 |
|
|
* | Updated version of [ 558544 ] cmd.py: add instance-specific stdin/out | Anthony Baxter | 2003-02-06 | 1 | -20/+31 |
|
|
* | [Patch #654421 from Matthew Mueller] | Andrew M. Kuchling | 2003-02-05 | 1 | -2/+2 |
|
|
* | dis(): Added an optional memo argument, so that multiple pickles in a | Tim Peters | 2003-02-05 | 1 | -2/+38 |
|
|
* | [680789] Debug with long array takes forever | Tim Peters | 2003-02-05 | 2 | -0/+30 |
|
|
* | Patch #551977: Regression exceptions for cygwin | Jason Tishler | 2003-02-05 | 1 | -0/+1 |
|
|
* | Getting rid of macfs and FSSpecs. | Jack Jansen | 2003-02-05 | 1 | -7/+5 |
|
|
* | Got rid of macfs | Jack Jansen | 2003-02-05 | 1 | -5/+3 |
|
|
* | Fixed a few typos, and changed FSCreateResourceFile filename argument to unic... | Jack Jansen | 2003-02-05 | 1 | -3/+3 |
|
|
* | Use os.path.realpath() in stead of abspath(), so the tests don't fail if | Jack Jansen | 2003-02-05 | 2 | -4/+4 |
|
|
* | SF patch #674396: Apply UserDict.DictMixin to expand dbshelve and dbojb | Raymond Hettinger | 2003-02-05 | 2 | -2/+4 |
|
|
* | Build pickler_choices list in a lazier way. | Tim Peters | 2003-02-05 | 1 | -16/+5 |
|
|
* | cPickle: exempt two_tuple from GC -- it's a speed hack, and doesn't | Tim Peters | 2003-02-04 | 2 | -33/+55 |
|
|
* | cPickle now generates proto 2 EXT[124] when appropriate. | Tim Peters | 2003-02-04 | 1 | -18/+18 |
|
|
* | Make sure filter() never returns tuple, str or unicode | Walter Dörwald | 2003-02-04 | 1 | -0/+23 |
|
|
* | Fix for [ 543344 ] Interpreter crashes when recoding; suggested | Marc-André Lemburg | 2003-02-04 | 1 | -0/+9 |
|
|
* | Added basic tests of copy_reg's extension registry. | Tim Peters | 2003-02-04 | 1 | -0/+78 |
|
|
* | Add a test that checks that filter() honors the sq_item slot for | Walter Dörwald | 2003-02-04 | 1 | -0/+13 |
|
|
* | filterstring() and filterunicode() in Python/bltinmodule.c | Walter Dörwald | 2003-02-04 | 1 | -0/+21 |
|
|
* | - Handle the img and MediaFormat modules not being available (by not | Jack Jansen | 2003-02-04 | 1 | -24/+40 |
|
|
* | Add refcount test. | Raymond Hettinger | 2003-02-04 | 1 | -3/+12 |
|
|
* | cPickle can load pickles using proto 2 EXT[124] now, but can't yet | Tim Peters | 2003-02-04 | 1 | -1/+1 |
|
|
* | Rename the extension registry variables to have leading underscores -- | Guido van Rossum | 2003-02-04 | 2 | -23/+23 |
|
|
* | Whitespace normalization. | Tim Peters | 2003-02-04 | 1 | -1/+1 |
|
|
* | Brought some module variables into synch with pickle.py's current values. | Tim Peters | 2003-02-04 | 1 | -0/+2 |
|
|
* | Fix typo. | Walter Dörwald | 2003-02-03 | 1 | -1/+1 |
|
|
* | Add a new test script that tests various features of the sys | Walter Dörwald | 2003-02-03 | 1 | -0/+211 |
|
|
* | test_newobj_tuple(), test_newobj_list(): These tests should work under | Tim Peters | 2003-02-03 | 1 | -8/+10 |
|
|
* | test_newobj_generic(): Use the global protocols vector instead of a | Tim Peters | 2003-02-03 | 1 | -1/+1 |
|
|
* | Added a bit to the EXT[124] tests, and refactored them to squash code | Tim Peters | 2003-02-03 | 1 | -51/+27 |
|
|
* | Do a better job of testing that opcodes aren't generated under protocols | Tim Peters | 2003-02-03 | 1 | -18/+32 |
|
|