summaryrefslogtreecommitdiffstats
path: root/Lib/pickle.py
Commit message (Expand)AuthorAgeFilesLines
* Jeremy writes:Guido van Rossum1999-10-101-1/+2
* Don't use "exec" in find_class(). It's slow, unnecessary, and (as AMKGuido van Rossum1999-03-251-5/+4
* Jim Fulton writes:Guido van Rossum1998-10-221-13/+16
* In load_inst(), when instantiating an instance the old way (i.e. whenGuido van Rossum1998-09-151-4/+7
* add handler for JPython's org.python.core.PyStringMap object, whichJeremy Hylton1998-05-271-0/+7
* Whoops! Add a missing 'instantiated = 1' to load_inst(); otherwise itGuido van Rossum1998-04-131-0/+1
* Correct dumb typo found by kjpylint (stack should be self.stack).Guido van Rossum1998-03-311-1/+1
* Correct a definite typo ('mem' should be 'memo').Guido van Rossum1998-03-311-1/+1
* Mass check-in after untabifying all files that need it.Guido van Rossum1998-03-261-72/+72
* Fixed typo in docstring: "__ version__" --> "__version__"Fred Drake1998-02-131-1/+1
* Unpickler.load_inst(), Unpickler.load_obj(), Unpickler.load_build():Barry Warsaw1998-01-261-7/+28
* Jim Fulton writes:Guido van Rossum1997-12-101-5/+12
* Don't specify base 0 to string.atoi when unpickling integers in textGuido van Rossum1997-12-101-1/+1
* When instantiating a class with no arguments and where the class doesGuido van Rossum1997-12-051-135/+40
* Three independent changes:Guido van Rossum1997-09-121-5/+10
* *Semantic change*: when unpickling the instance variables of anGuido van Rossum1997-09-081-2/+1
* Add the same _keep_alive patch (by Michael Scharff) that was added toGuido van Rossum1997-09-031-0/+19
* Restore two features of the original 1.4 pickle:Guido van Rossum1997-04-251-5/+6
* Remove Digital Creations copyright (Jim sez it's okay).Guido van Rossum1997-04-111-53/+0
* New version by Digital Creations, supports binary format compatibleGuido van Rossum1997-04-091-427/+785
* Implement find_class() without exec statement.Guido van Rossum1997-03-141-4/+2
* Compromise on test in find_class(): a user-defined function is okay,Guido van Rossum1996-10-071-3/+1
* This is the third time I check in this change :-(Guido van Rossum1996-08-081-2/+1
* Slight update of doc string -- suggest default args for __init__, noGuido van Rossum1996-08-081-4/+6
* Optimizations and one intentional loophole by Jim Fulton.Guido van Rossum1996-07-221-58/+82
* Set the base for atoi() and atol() to 0, since we're reading PythonGuido van Rossum1996-05-151-3/+3
* Don't atoi() the memo key.Guido van Rossum1996-04-121-7/+16
* correct typo (persis*ent)Guido van Rossum1995-08-071-1/+1
* test other name variableGuido van Rossum1995-06-221-1/+1
* correct typo in exampleGuido van Rossum1995-04-101-1/+1
* pickle classes; add format_version, load(s)/dump(s) shortcutsGuido van Rossum1995-03-141-16/+61
* added PicklingError exceptionGuido van Rossum1995-03-091-2/+9
* raise EOFError when load() hits EOF, instead of KeyErrorGuido van Rossum1995-03-041-0/+4
* minute comment changesGuido van Rossum1995-02-161-3/+3
* shelve.py: database of persistent objects, on top of pickle.py and anydbm.pyGuido van Rossum1995-01-101-0/+504