1. bfe1824 Issue #18473: Fixed 2to3 and 3to2 compatible pickle mappings. by Serhiy Storchaka · 9 years ago
  2. 21d7533 Issue #23094: Fixed readline with frames in Python implementation of pickle. by Serhiy Storchaka · 9 years ago
  3. e161849 Issue #21905: Avoid RuntimeError in pickle.whichmodule() when sys.modules is mutated while iterating. by Antoine Pitrou · 10 years ago
  4. 7fa767e Issue #20976: pyflakes: Remove unused imports by Victor Stinner · 10 years ago
  5. d05c9ff Issue #6784: Strings from Python 2 can now be unpickled as bytes objects. by Alexandre Vassalotti · 11 years ago
  6. 3c23e7a Issue #6477: Merge with 3.3. by Alexandre Vassalotti · 11 years ago
  7. 19b6fa6 Issue #6477: Added support for pickling the types of built-in singletons. by Alexandre Vassalotti · 11 years ago
  8. c49477b Make Ellipsis and NotImplemented picklable through the reduce protocol. by Alexandre Vassalotti · 11 years ago
  9. 4c05d3b Make built-in methods picklable through the reduce protocol. by Alexandre Vassalotti · 11 years ago
  10. b6a2f2a Make framing optional in pickle protocol 4. by Alexandre Vassalotti · 11 years ago
  11. c9dc4a2 Issue #17810: Implement PEP 3154, pickle protocol 4. by Antoine Pitrou · 11 years ago
  12. 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  13. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  14. cd171c8 Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) by Brett Cannon · 11 years ago
  15. 0a14066 Issue #18200: Update the stdlib (except tests) to use ModuleNotFoundError. by Brett Cannon · 11 years ago
  16. f3bc946 Merge 3.3 by Alexandre Vassalotti · 11 years ago
  17. 1f7492c Isuse #17720: Fix APPENDS handling in the Python implementation of Unpickler by Alexandre Vassalotti · 11 years ago
  18. 7c5e094 Make C and Python implementations of pickle load STRING opcodes the same way. by Alexandre Vassalotti · 11 years ago
  19. af94051 Issue #17710: Fix pickle raising a SystemError on bogus input. by Antoine Pitrou · 11 years ago
  20. 3034efd Issue #17710: Fix pickle raising a SystemError on bogus input. by Antoine Pitrou · 11 years ago
  21. a3e32c9 Closes #16551. Cleanup pickle.py. by Serhiy Storchaka · 11 years ago
  22. cc75717 Style cleanups for pickle.py and _pickle. by Alexandre Vassalotti · 11 years ago
  23. 9982c53 Issue #12848: The pure Python pickle implementation now treats object lengths as unsigned 32-bit integers, like the C implementation does. by Antoine Pitrou · 12 years ago
  24. bf6ecf9 Issue #12848: The pure Python pickle implementation now treats object lengths as unsigned 32-bit integers, like the C implementation does. by Antoine Pitrou · 12 years ago
  25. f3078fb Fixes #13842: cannot pickle Ellipsis or NotImplemented. by Łukasz Langa · 12 years ago
  26. 8d3c290 Issue #14166: Pickler objects now have an optional `dispatch_table` attribute which allows to set custom per-pickler reduction functions. by Antoine Pitrou · 12 years ago
  27. a23d65c Merge 3.2 by Alexandre Vassalotti · 13 years ago
  28. 3bfc65a Issue #13505: Make pickling of bytes object compatible with Python 2. by Alexandre Vassalotti · 13 years ago
  29. aa6c1d2 Issue #13575: there is only one class type. by Florent Xicluna · 13 years ago
  30. 54540ec Remove redundant imports. by Florent Xicluna · 13 years ago
  31. aabbda5 Merge 3.2 by Florent Xicluna · 13 years ago
  32. 5d1155c Closes #13258: Use callable() built-in in the standard library. by Florent Xicluna · 13 years ago
  33. ffd41d9 Issue #7689: Allow pickling of dynamically created classes when their by Antoine Pitrou · 13 years ago
  34. 5a688db Issue #7689: Allow pickling of dynamically created classes when their by Antoine Pitrou · 13 years ago
  35. a514eb9 Issue #12847: Fix a crash with negative PUT and LONG_BINPUT arguments in by Antoine Pitrou · 13 years ago
  36. 55549ec Issue #12847: Fix a crash with negative PUT and LONG_BINPUT arguments in by Antoine Pitrou · 13 years ago
  37. 8c6f88e remove __version__s dependent on subversion keyword expansion (closes #12221) by Benjamin Peterson · 13 years ago
  38. ea99c5c Issue #9410: Various optimizations to the pickle module, leading to by Antoine Pitrou · 14 years ago
  39. 455f7bd Issue #9378: python -m pickle <pickle file> will now load and display by Alexander Belopolsky · 14 years ago
  40. d92f040 Issue #5180: Fixed a bug that prevented loading 2.x pickles in 3.x by Alexander Belopolsky · 14 years ago
  41. 485fb56 Issue #8383: pickle and pickletools use surrogatepass error handler when by Victor Stinner · 14 years ago
  42. d7a3da8 Simplified long coding in pickle.py. by Alexandre Vassalotti · 14 years ago
  43. d9dfaa9 Issue #6137: The pickle module now translates module names when loading by Antoine Pitrou · 15 years ago
  44. ebfecfd Only try to intern str objects when unpickling attributes. by Alexandre Vassalotti · 15 years ago
  45. a9f48a0 Merged revisions 72223 via svnmerge from by Antoine Pitrou · 15 years ago
  46. 8dd0514 Issue #4842, patch 1/2: fix pickle in Python 3.x so that pickling with the by Mark Dickinson · 15 years ago
  47. 49956b2 fix typo #4904 by Benjamin Peterson · 15 years ago
  48. 3cfcab9 Fix issue #4374: Pickle tests fail w/o _pickle extension. by Alexandre Vassalotti · 16 years ago
  49. b46a633 Sorry, r67092 is commit miss.... by Hirokazu Yamamoto · 16 years ago
  50. 1543a22 Blocked revisions 67002 via svnmerge by Hirokazu Yamamoto · 16 years ago
  51. e8022b4 Remove a confusing statement in Pickler's docstring. by Alexandre Vassalotti · 16 years ago
  52. ca2d610 Restore _pickle module accelerator module. by Alexandre Vassalotti · 16 years ago
  53. 75f25f2 revert the addition of _pickle because it was causing havok with 64-bit by Benjamin Peterson · 16 years ago
  54. 66b343b Removed exception renaming cruft in pickle.py. by Alexandre Vassalotti · 16 years ago
  55. cc31306 Issue 2917: Merge the pickle and cPickle module. by Alexandre Vassalotti · 16 years ago
  56. c7db1d6 Change Pickler._batch_appends() and Pickler._batch_setitems() to take by Alexandre Vassalotti · 16 years ago
  57. f7fa63d Rename copy_reg module to copyreg. by Alexandre Vassalotti · 16 years ago
  58. 8cb02b6 Removed memoryview objects from bytes_types. by Alexandre Vassalotti · 16 years ago
  59. f416981 - A new pickle protocol (protocol 3) is added with explicit support by Guido van Rossum · 16 years ago
  60. 254348e Rename buffer -> bytearray. by Guido van Rossum · 17 years ago
  61. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  62. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
  63. feea078 Random changes having to do with readline() and bytes. by Guido van Rossum · 17 years ago
  64. 26d95c3 More str/bytes fixes. by Guido van Rossum · 17 years ago
  65. 39478e8 Changes in anticipation of stricter str vs. bytes enforcement. by Guido van Rossum · 17 years ago
  66. 99603b0 Getting rid of cPickle. Mmm, feels good! by Guido van Rossum · 17 years ago
  67. f93254d Fix test_pickle, by reverting the string opcodes (S, T, U) to returning by Guido van Rossum · 17 years ago
  68. 10a60b3 Change Py_BuildValue to generate Unicode objects for by Martin v. Löwis · 17 years ago
  69. aa588c4 Fix some problems introduced by the str8 repr change. by Guido van Rossum · 17 years ago
  70. 42748a8 Rip out all codecs that can't work in a unicode/bytes world: by Walter Dörwald · 17 years ago
  71. 1325790 Merged revisions 55795-55816 via svnmerge from by Guido van Rossum · 17 years ago
  72. d59da4b Merged revisions 55407-55513 via svnmerge from by Guido van Rossum · 17 years ago
  73. a8add0e Merged revisions 55270-55324 via svnmerge from by Guido van Rossum · 17 years ago
  74. cfe5f20 Got test_pickletools and test_pickle working. by Guido van Rossum · 17 years ago
  75. b8142c3 Got test_exceptions.py working. by Guido van Rossum · 17 years ago
  76. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  77. 1255ed6 Much more pickling now works. by Guido van Rossum · 17 years ago
  78. 2e6a4b3 Checkpoint. Make pickle.py read/write bytes. by Guido van Rossum · 17 years ago
  79. ef87d6e Rip out all the u"..." literals and calls to unicode(). by Guido van Rossum · 17 years ago
  80. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  81. 650f0d0 Hide list comp variables and support set comprehensions by Nick Coghlan · 17 years ago
  82. 634e53f Fix a bizarre error where test_pickletools fails if preceded by test_pyclbr. by Guido van Rossum · 17 years ago
  83. cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 17 years ago
  84. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 17 years ago
  85. ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 17 years ago
  86. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 17 years ago
  87. e2b70bc Get rid of dict.has_key(). Boy this has a lot of repercussions! by Guido van Rossum · 18 years ago
  88. 65810fe SF patch 1495675: Remove types.InstanceType and new.instance (Collin Winter) by Guido van Rossum · 18 years ago
  89. fe59dc1 Revert previous checkin. by Raymond Hettinger · 19 years ago
  90. f715366 Reduce the usage of the types module. by Raymond Hettinger · 19 years ago
  91. a6b45cc Eliminate the deprecated option to return None instead of a tuple of arguments in __reduce__(). by Raymond Hettinger · 20 years ago
  92. 3489cad Removed the deprecated bin parameter from the pickle module. by Raymond Hettinger · 20 years ago
  93. dc54f2b Make 'bin' argument trigger DeprecationWarning by Andrew M. Kuchling · 20 years ago
  94. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 20 years ago
  95. e3a565e Fix grammar in comment. by Jeremy Hylton · 21 years ago
  96. 443ada4 Remove unused _better_reduce (which will disappear soon) and by Guido van Rossum · 21 years ago
  97. c53f009 Introducing __reduce_ex__, which is called with a protocol number argument by Guido van Rossum · 21 years ago
  98. 080c88b cPickle.c, load_build(): Taught cPickle how to pick apart by Tim Peters · 21 years ago
  99. 8587b3c Added a HIGHEST_PROTOCOL module attribute to pickle and cPickle. by Tim Peters · 21 years ago
  100. 42f08ac Implemented batching for dicts in cPickle. This is after two failed by Tim Peters · 21 years ago