summaryrefslogtreecommitdiff
path: root/Lib/pickle.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #892902: Fixed pickling recursive objects.Serhiy Storchaka2015-11-071-1/+7
* Issue #6477: Revert fbb97f6eb3b3 as it broke test_xpickle.Alexandre Vassalotti2013-11-301-20/+1
* Issue #6477: Added pickling support for singletons and their types.Alexandre Vassalotti2013-11-301-1/+20
* Issue #16231: Allow false values other than None to be used as persistent IDs.Alexandre Vassalotti2013-11-301-1/+1
* Issue #17710: Fix cPickle raising a SystemError on bogus input.Antoine Pitrou2013-04-151-1/+1
* Issue #7689: Allow pickling of dynamically created classes when theirAntoine Pitrou2011-10-041-9/+9
* Fix closes Issue11439 - Handle the SVN Keywords in 2.7 by replacing them with...Senthil Kumaran2011-07-281-1/+1
* Isue #5084: unpickling now interns the attribute names of pickled objects,Antoine Pitrou2009-05-021-1/+9
* compare types with isBenjamin Peterson2009-04-051-1/+1
* Remove use of callable() from pickle to silence warnings under -3.Brett Cannon2008-08-041-1/+1
* Revert copy_reg -> copyreg rename.Georg Brandl2008-05-201-4/+4
* Patch by Quentin Gallet-Gilles: Renaming leftovers for 2.6.Alexandre Vassalotti2008-05-161-1/+1
* Added module stub for copy_reg renaming in 3.0.Alexandre Vassalotti2008-05-111-3/+3
* Revert previous checkin.Raymond Hettinger2005-02-071-15/+15
* Reduce the usage of the types module.Raymond Hettinger2005-02-071-15/+15
* Eliminate the deprecated option to return None instead of a tuple of argument...Raymond Hettinger2004-12-071-16/+2
* Removed the deprecated bin parameter from the pickle module.Raymond Hettinger2004-12-051-11/+5
* Make 'bin' argument trigger DeprecationWarningAndrew M. Kuchling2004-08-071-1/+1
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-11/+11
* Fix grammar in comment.Jeremy Hylton2003-06-291-1/+1
* Remove unused _better_reduce (which will disappear soon) andGuido van Rossum2003-02-181-1/+1
* Introducing __reduce_ex__, which is called with a protocol number argumentGuido van Rossum2003-02-181-15/+14
* cPickle.c, load_build(): Taught cPickle how to pick apartTim Peters2003-02-151-0/+4
* Added a HIGHEST_PROTOCOL module attribute to pickle and cPickle.Tim Peters2003-02-131-3/+7
* Implemented batching for dicts in cPickle. This is after two failedTim Peters2003-02-111-1/+2
* Implemented list batching in cPickle.Tim Peters2003-02-111-0/+1
* Rename 'proto' keyword arg to 'protocol' . Greg Ward's suggestion.Guido van Rossum2003-02-091-17/+17
* Move _better_reduce from copy.py to copy_reg.py, and also use it inGuido van Rossum2003-02-061-122/+4
* Remove a debug print statement.Guido van Rossum2003-02-061-1/+0
* No need for a continuation line.Jeremy Hylton2003-02-061-2/+1
* Replace hasattr() + getattr() with single getattr() and default value.Jeremy Hylton2003-02-061-2/+1
* Rename the extension registry variables to have leading underscores --Guido van Rossum2003-02-041-5/+5
* _slotnames(): this is a fairly expensive calculation. Cache theGuido van Rossum2003-02-031-6/+23
* _slotnames(): exclude __dict__ and __weakref__; these aren't realGuido van Rossum2003-02-031-1/+2
* Support keyword argument 'bin', with a pending deprecation warning.Guido van Rossum2003-02-031-5/+13
* cPickle support for TUPLE[123]. Incidentally plugged several undetectedTim Peters2003-02-021-7/+9
* long(string, base) now takes time linear in len(string) when base is aTim Peters2003-02-021-4/+1
* cPickle.c: Full support for the new LONG1 and LONG4. Added comments.Tim Peters2003-02-021-7/+15
* The C pickle now knows how to deal with a proto= argument. AssortedTim Peters2003-02-011-11/+9
* Change the default protocol back to 0.Guido van Rossum2003-01-311-8/+12
* Another extension to reduce(). It can return a 4- or 5-tuple now.Guido van Rossum2003-01-311-67/+92
* Provide __module__ attributes for functions defined in C and Python.Jeremy Hylton2003-01-311-3/+6
* Pass the object to save_reduce(), so the memoize() call can go intoGuido van Rossum2003-01-311-3/+8
* Add a magical feature to save_reduce so that __reduce__ can causeGuido van Rossum2003-01-311-4/+40
* It's Official: for LONG1/LONG4, a "byte count" of 0 is taken as aTim Peters2003-01-311-6/+17
* Fix typoNeal Norwitz2003-01-311-1/+1
* Linear-time implementations of {encode,decode}_long.Tim Peters2003-01-311-19/+50
* load_inst(), load_obj(): Put the bulk of these into a common newTim Peters2003-01-301-26/+18
* There was a subtle big in save_newobj(): it used self.save_global(t)Guido van Rossum2003-01-301-1/+2
* Slight code rearrangement to avoid testing getstate twice.Guido van Rossum2003-01-301-22/+23