| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Merged revisions 55795-55816 via svnmerge from | Guido van Rossum | 2007-06-07 | 1 | -15/+14 |
|
|
* | Merged revisions 55407-55513 via svnmerge from | Guido van Rossum | 2007-05-22 | 1 | -1/+1 |
|
|
* | Merged revisions 55270-55324 via svnmerge from | Guido van Rossum | 2007-05-14 | 1 | -22/+4 |
|
|
* | Got test_pickletools and test_pickle working. | Guido van Rossum | 2007-05-08 | 1 | -25/+30 |
|
|
* | Got test_exceptions.py working. | Guido van Rossum | 2007-05-08 | 1 | -3/+3 |
|
|
* | Merged revisions 55007-55179 via svnmerge from | Guido van Rossum | 2007-05-07 | 1 | -2/+2 |
|
|
* | Much more pickling now works. | Guido van Rossum | 2007-05-04 | 1 | -4/+7 |
|
|
* | Checkpoint. Make pickle.py read/write bytes. | Guido van Rossum | 2007-05-04 | 1 | -209/+185 |
|
|
* | Rip out all the u"..." literals and calls to unicode(). | Guido van Rossum | 2007-05-02 | 1 | -7/+7 |
|
|
* | PEP 3114: rename .next() to .__next__() and add next() builtin. | Georg Brandl | 2007-04-21 | 1 | -2/+2 |
|
|
* | Hide list comp variables and support set comprehensions | Nick Coghlan | 2007-04-15 | 1 | -1/+0 |
|
|
* | Fix a bizarre error where test_pickletools fails if preceded by test_pyclbr. | Guido van Rossum | 2007-02-26 | 1 | -1/+1 |
|
|
* | - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; | Guido van Rossum | 2007-02-11 | 1 | -1/+1 |
|
|
* | Rip out 'long' and 'L'-suffixed integer literals. | Guido van Rossum | 2007-01-15 | 1 | -14/+14 |
|
|
* | Merged the int/long unification branch, by very crude means (sorry Thomas!). | Guido van Rossum | 2007-01-14 | 1 | -1/+21 |
|
|
* | SF patch 1631942 by Collin Winter: | Guido van Rossum | 2007-01-10 | 1 | -2/+2 |
|
|
* | Get rid of dict.has_key(). Boy this has a lot of repercussions! | Guido van Rossum | 2006-08-18 | 1 | -7/+7 |
|
|
* | SF patch 1495675: Remove types.InstanceType and new.instance | Guido van Rossum | 2006-05-26 | 1 | -40/+0 |
|
|
* | Revert previous checkin. | Raymond Hettinger | 2005-02-07 | 1 | -15/+15 |
|
|
* | Reduce the usage of the types module. | Raymond Hettinger | 2005-02-07 | 1 | -15/+15 |
|
|
* | Eliminate the deprecated option to return None instead of a tuple of argument... | Raymond Hettinger | 2004-12-07 | 1 | -16/+2 |
|
|
* | Removed the deprecated bin parameter from the pickle module. | Raymond Hettinger | 2004-12-05 | 1 | -11/+5 |
|
|
* | Make 'bin' argument trigger DeprecationWarning | Andrew M. Kuchling | 2004-08-07 | 1 | -1/+1 |
|
|
* | Replace backticks with repr() or "%r" | Walter Dörwald | 2004-02-12 | 1 | -11/+11 |
|
|
* | Fix grammar in comment. | Jeremy Hylton | 2003-06-29 | 1 | -1/+1 |
|
|
* | Remove unused _better_reduce (which will disappear soon) and | Guido van Rossum | 2003-02-18 | 1 | -1/+1 |
|
|
* | Introducing __reduce_ex__, which is called with a protocol number argument | Guido van Rossum | 2003-02-18 | 1 | -15/+14 |
|
|
* | cPickle.c, load_build(): Taught cPickle how to pick apart | Tim Peters | 2003-02-15 | 1 | -0/+4 |
|
|
* | Added a HIGHEST_PROTOCOL module attribute to pickle and cPickle. | Tim Peters | 2003-02-13 | 1 | -3/+7 |
|
|
* | Implemented batching for dicts in cPickle. This is after two failed | Tim Peters | 2003-02-11 | 1 | -1/+2 |
|
|
* | Implemented list batching in cPickle. | Tim Peters | 2003-02-11 | 1 | -0/+1 |
|
|
* | Rename 'proto' keyword arg to 'protocol' . Greg Ward's suggestion. | Guido van Rossum | 2003-02-09 | 1 | -17/+17 |
|
|
* | Move _better_reduce from copy.py to copy_reg.py, and also use it in | Guido van Rossum | 2003-02-06 | 1 | -122/+4 |
|
|
* | Remove a debug print statement. | Guido van Rossum | 2003-02-06 | 1 | -1/+0 |
|
|
* | 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 |
|
|
* | Rename the extension registry variables to have leading underscores -- | Guido van Rossum | 2003-02-04 | 1 | -5/+5 |
|
|
* | _slotnames(): this is a fairly expensive calculation. Cache the | Guido van Rossum | 2003-02-03 | 1 | -6/+23 |
|
|
* | _slotnames(): exclude __dict__ and __weakref__; these aren't real | Guido van Rossum | 2003-02-03 | 1 | -1/+2 |
|
|
* | Support keyword argument 'bin', with a pending deprecation warning. | Guido van Rossum | 2003-02-03 | 1 | -5/+13 |
|
|
* | cPickle support for TUPLE[123]. Incidentally plugged several undetected | Tim Peters | 2003-02-02 | 1 | -7/+9 |
|
|
* | long(string, base) now takes time linear in len(string) when base is a | Tim Peters | 2003-02-02 | 1 | -4/+1 |
|
|
* | cPickle.c: Full support for the new LONG1 and LONG4. Added comments. | Tim Peters | 2003-02-02 | 1 | -7/+15 |
|
|
* | The C pickle now knows how to deal with a proto= argument. Assorted | Tim Peters | 2003-02-01 | 1 | -11/+9 |
|
|
* | Change the default protocol back to 0. | Guido van Rossum | 2003-01-31 | 1 | -8/+12 |
|
|
* | Another extension to reduce(). It can return a 4- or 5-tuple now. | Guido van Rossum | 2003-01-31 | 1 | -67/+92 |
|
|
* | Provide __module__ attributes for functions defined in C and Python. | Jeremy Hylton | 2003-01-31 | 1 | -3/+6 |
|
|
* | Pass the object to save_reduce(), so the memoize() call can go into | Guido van Rossum | 2003-01-31 | 1 | -3/+8 |
|
|
* | Add a magical feature to save_reduce so that __reduce__ can cause | Guido van Rossum | 2003-01-31 | 1 | -4/+40 |
|
|
* | It's Official: for LONG1/LONG4, a "byte count" of 0 is taken as a | Tim Peters | 2003-01-31 | 1 | -6/+17 |
|
|