summaryrefslogtreecommitdiff
path: root/Lib/pickletools.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* dis(): Added an optional memo argument, so that multiple pickles in aTim Peters2003-02-051-2/+38
* It's Official: for LONG1/LONG4, a "byte count" of 0 is taken as aTim Peters2003-01-311-3/+8
* Updated the INST/OBJ docs, to say they really are (almost) identicalTim Peters2003-01-301-0/+6
* dis(): Simplified stack emulation a bit.Tim Peters2003-01-301-14/+16
* dis(): This had a problem with proto 0 pickles, in that POP sometimesTim Peters2003-01-291-17/+113
* minor grammar tweaksSkip Montanaro2003-01-291-5/+5
* Document the demise of all pretenses of safety, and the differenceGuido van Rossum2003-01-291-4/+17
* Whitespace normalization.Tim Peters2003-01-291-4/+4
* pickle: Comment repair.Tim Peters2003-01-291-23/+2
* Use raw-mode docstring whenever there's an escape code in an example --Tim Peters2003-01-281-42/+42
* _dis_test should be a raw string now that it contains \x escapes.Guido van Rossum2003-01-281-1/+1
* dis(): Not all opcodes are printable anymore, so print the reprTim Peters2003-01-281-126/+150
* Fix one disassembly output now that empty tuples are no longerGuido van Rossum2003-01-281-12/+11
* Comments.Tim Peters2003-01-281-1/+5
* Now that proto2 is defined, replaced XXX blocks with text about it.Tim Peters2003-01-281-175/+206
* Use proper function name in exception messagesNeal Norwitz2003-01-281-2/+2
* Removed the new LONG2 opcode: it's extravagant. If LONG1 isn't enough,Tim Peters2003-01-281-51/+13
* Documented the 2's-comp business for the new long opcodes.Tim Peters2003-01-271-3/+3
* Whitespace normalization.Tim Peters2003-01-271-3/+3
* decode_long(): Simplified the "is it negative?" test.Tim Peters2003-01-271-2/+5
* Begin the change from 'binary vs. text mode' to 'protocol 0, 1, 2'.Guido van Rossum2003-01-271-5/+5
* Begin documenting protocol 2.Guido van Rossum2003-01-271-0/+288
* Remove a stray quote.Guido van Rossum2003-01-271-1/+1
* Repaired comment.Tim Peters2003-01-271-2/+2
* stringnl_noescape_pair(): changed the reader to separate the twoTim Peters2003-01-271-6/+6
* Moving pickletools.py from the sandbox into the std library. I startedTim Peters2003-01-271-0/+1794