summaryrefslogtreecommitdiff
path: root/Lib/pickletools.py
Commit message (Expand)AuthorAgeFilesLines
* Merge 3.2Alexandre Vassalotti2011-12-131-39/+31
|\
| * Issue #13505: Make pickling of bytes object compatible with Python 2.Alexandre Vassalotti2011-12-131-39/+31
* | Issue #13575: there is only one class type.Florent Xicluna2011-12-121-0/+2
* | Cleanup code: remove int/long idioms and simplify a while statement.Florent Xicluna2011-10-231-4/+1
|/
* #11565: Merge with 3.1.Ezio Melotti2011-03-161-1/+1
|\
| * #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-1/+1
| * Merged revisions 83212,83829,83833,83838-83839,83878,84019,84025,84028,84032,...Florent Xicluna2010-08-141-1/+1
| * Merged revisions 82915 via svnmerge fromAlexander Belopolsky2010-07-161-8/+11
| * Merged revisions 80031 via svnmerge fromVictor Stinner2010-04-131-1/+1
* | Syntax cleanup.Florent Xicluna2010-07-281-1/+1
* | Issue #9268: Add annotation option to pickletools.disAlexander Belopolsky2010-07-171-5/+39
* | Corrected TUPLE<N> opcodes' docs.Alexander Belopolsky2010-07-161-8/+11
* | Issue #9094: Make python -m pickletools disassemble pickles given inAlexander Belopolsky2010-07-031-1/+40
* | Issue #8383: pickle and pickletools use surrogatepass error handler whenVictor Stinner2010-04-131-1/+1
|/
* Issue #6137: The pickle module now translates module names when loadingAntoine Pitrou2009-06-041-85/+85
* Merge r72792: POP_MARK was not in pickle protocol 0, SHORT_BINBYTES was not i...Collin Winter2009-05-201-2/+2
* Merged revisions 68903,68906 via svnmerge fromMark Dickinson2009-01-241-5/+5
* Issue #4842, patch 1/2: fix pickle in Python 3.x so that pickling with theMark Dickinson2009-01-201-38/+40
* Restore _pickle module accelerator module.Alexandre Vassalotti2008-06-121-10/+12
* revert the addition of _pickle because it was causing havok with 64-bitBenjamin Peterson2008-06-121-12/+10
* Issue 2917: Merge the pickle and cPickle module.Alexandre Vassalotti2008-06-111-10/+12
* Rename copy_reg module to copyreg.Alexandre Vassalotti2008-05-111-48/+48
* - A new pickle protocol (protocol 3) is added with explicit supportGuido van Rossum2008-03-171-23/+86
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-111-1/+1
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-111-3/+28
* #1535: rename __builtin__ module to builtins.Georg Brandl2007-12-021-36/+36
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-10/+13
* Patch #1303: Adapt str8 constructor to bytes (now buffer) one.Georg Brandl2007-10-241-1/+1
* Patch# 1258 by Christian Heimes: kill basestring.Guido van Rossum2007-10-161-5/+5
* Change string literals to bytes, since they are compared to bytes.Jeremy Hylton2007-08-291-2/+2
* More str/bytes fixes.Guido van Rossum2007-08-271-4/+4
* SF patch# 1770008 by Christian Heimes (plus some extras).Guido van Rossum2007-08-091-2/+2
* Getting rid of cPickle. Mmm, feels good!Guido van Rossum2007-07-201-6/+4
* Make test_pickletools.py pass.Guido van Rossum2007-07-171-34/+20
* Rip out all codecs that can't work in a unicode/bytes world:Walter Dörwald2007-06-121-3/+3
* Merged revisions 55795-55816 via svnmerge fromGuido van Rossum2007-06-071-4/+1
* Merged revisions 55270-55324 via svnmerge fromGuido van Rossum2007-05-141-12/+1
* Got test_pickletools and test_pickle working.Guido van Rossum2007-05-081-80/+94
* Checkpoint. A b it closer to working pickles and pickletools.Guido van Rossum2007-05-071-1/+2
* Rip out all the u"..." literals and calls to unicode().Guido van Rossum2007-05-021-3/+3
* Change a test to be more predictable.Guido van Rossum2007-02-261-4/+4
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-8/+8
* Rip out 'long' and 'L'-suffixed integer literals.Guido van Rossum2007-01-151-5/+5
* Fix pickletools doctests -- all we get nowadays is longs.Guido van Rossum2007-01-151-5/+5
* Get rid of dict.has_key(). Boy this has a lot of repercussions!Guido van Rossum2006-08-181-21/+12
* SF patch 1495675: Remove types.InstanceType and new.instanceGuido van Rossum2006-05-261-30/+46
* An instance of class PicklingError was used here simply as an example ofTim Peters2005-02-151-21/+26
* Remove reference to old pickle feature.Raymond Hettinger2004-12-071-5/+0
* Essentially SF patch 1061679: add missing __all__ to pickletools.py.Tim Peters2004-11-061-0/+4
* Add argument to docstringAndrew M. Kuchling2004-08-071-1/+1