1. 3410c01 Issue #17711: Fixed unpickling by the persistent ID with protocol 0. by Serhiy Storchaka · 8 years ago
  2. dec25af Issue #17711: Fixed unpickling by the persistent ID with protocol 0. by Serhiy Storchaka · 8 years ago
  3. 3e04d5b Issue #27076: Merge spelling from 3.5 by Martin Panter · 8 years ago
  4. 46f5072 Issue #27076: Doc, comment and tests spelling fixes by Martin Panter · 8 years ago
  5. 59fb634 Issue #25761: Improved detecting errors in broken pickle data. by Serhiy Storchaka · 8 years ago
  6. 723e296 Removed debugging output of exception raised by __reduce__ method. by Serhiy Storchaka · 8 years ago
  7. 1f23e23 Removed debugging output of exception raised by __reduce__ method. by Serhiy Storchaka · 8 years ago
  8. a8d83f5 Removed debugging output of exception raised by __reduce__ method. by Serhiy Storchaka · 8 years ago
  9. e56a919 Issue #25523: Merge a-to-an corrections from 3.5 by Martin Panter · 9 years ago
  10. 2eb819f Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5 by Martin Panter · 9 years ago
  11. 7462b649 Issue #25523: Correct "a" article to "an" article by Martin Panter · 9 years ago
  12. 0d554d7 Issue #24164: Objects that need calling ``__new__`` with keyword arguments, by Serhiy Storchaka · 9 years ago
  13. 525faae Issue #25262. Added support for BINBYTES8 opcode in Python implementation of by Serhiy Storchaka · 9 years ago
  14. e060619 Issue #25262. Added support for BINBYTES8 opcode in Python implementation of by Serhiy Storchaka · 9 years ago
  15. 58e4134 Issue #23611: Serializing more "lookupable" objects (such as unbound methods by Serhiy Storchaka · 9 years ago
  16. bfe1824 Issue #18473: Fixed 2to3 and 3to2 compatible pickle mappings. by Serhiy Storchaka · 9 years ago
  17. 21d7533 Issue #23094: Fixed readline with frames in Python implementation of pickle. by Serhiy Storchaka · 9 years ago
  18. e161849 Issue #21905: Avoid RuntimeError in pickle.whichmodule() when sys.modules is mutated while iterating. by Antoine Pitrou · 10 years ago
  19. 7fa767e Issue #20976: pyflakes: Remove unused imports by Victor Stinner · 10 years ago
  20. d05c9ff Issue #6784: Strings from Python 2 can now be unpickled as bytes objects. by Alexandre Vassalotti · 10 years ago
  21. 3c23e7a Issue #6477: Merge with 3.3. by Alexandre Vassalotti · 10 years ago
  22. 19b6fa6 Issue #6477: Added support for pickling the types of built-in singletons. by Alexandre Vassalotti · 10 years ago
  23. c49477b Make Ellipsis and NotImplemented picklable through the reduce protocol. by Alexandre Vassalotti · 11 years ago
  24. 4c05d3b Make built-in methods picklable through the reduce protocol. by Alexandre Vassalotti · 11 years ago
  25. b6a2f2a Make framing optional in pickle protocol 4. by Alexandre Vassalotti · 11 years ago
  26. c9dc4a2 Issue #17810: Implement PEP 3154, pickle protocol 4. by Antoine Pitrou · 11 years ago
  27. 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  28. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  29. cd171c8 Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) by Brett Cannon · 11 years ago
  30. 0a14066 Issue #18200: Update the stdlib (except tests) to use ModuleNotFoundError. by Brett Cannon · 11 years ago
  31. f3bc946 Merge 3.3 by Alexandre Vassalotti · 11 years ago
  32. 1f7492c Isuse #17720: Fix APPENDS handling in the Python implementation of Unpickler by Alexandre Vassalotti · 11 years ago
  33. 7c5e094 Make C and Python implementations of pickle load STRING opcodes the same way. by Alexandre Vassalotti · 11 years ago
  34. af94051 Issue #17710: Fix pickle raising a SystemError on bogus input. by Antoine Pitrou · 11 years ago
  35. 3034efd Issue #17710: Fix pickle raising a SystemError on bogus input. by Antoine Pitrou · 11 years ago
  36. a3e32c9 Closes #16551. Cleanup pickle.py. by Serhiy Storchaka · 11 years ago
  37. cc75717 Style cleanups for pickle.py and _pickle. by Alexandre Vassalotti · 11 years ago
  38. 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
  39. 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
  40. f3078fb Fixes #13842: cannot pickle Ellipsis or NotImplemented. by Łukasz Langa · 12 years ago
  41. 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
  42. a23d65c Merge 3.2 by Alexandre Vassalotti · 12 years ago
  43. 3bfc65a Issue #13505: Make pickling of bytes object compatible with Python 2. by Alexandre Vassalotti · 12 years ago
  44. aa6c1d2 Issue #13575: there is only one class type. by Florent Xicluna · 12 years ago
  45. 54540ec Remove redundant imports. by Florent Xicluna · 13 years ago
  46. aabbda5 Merge 3.2 by Florent Xicluna · 13 years ago
  47. 5d1155c Closes #13258: Use callable() built-in in the standard library. by Florent Xicluna · 13 years ago
  48. ffd41d9 Issue #7689: Allow pickling of dynamically created classes when their by Antoine Pitrou · 13 years ago
  49. 5a688db Issue #7689: Allow pickling of dynamically created classes when their by Antoine Pitrou · 13 years ago
  50. a514eb9 Issue #12847: Fix a crash with negative PUT and LONG_BINPUT arguments in by Antoine Pitrou · 13 years ago
  51. 55549ec Issue #12847: Fix a crash with negative PUT and LONG_BINPUT arguments in by Antoine Pitrou · 13 years ago
  52. 8c6f88e remove __version__s dependent on subversion keyword expansion (closes #12221) by Benjamin Peterson · 13 years ago
  53. ea99c5c Issue #9410: Various optimizations to the pickle module, leading to by Antoine Pitrou · 14 years ago
  54. 455f7bd Issue #9378: python -m pickle <pickle file> will now load and display by Alexander Belopolsky · 14 years ago
  55. d92f040 Issue #5180: Fixed a bug that prevented loading 2.x pickles in 3.x by Alexander Belopolsky · 14 years ago
  56. 485fb56 Issue #8383: pickle and pickletools use surrogatepass error handler when by Victor Stinner · 14 years ago
  57. d7a3da8 Simplified long coding in pickle.py. by Alexandre Vassalotti · 14 years ago
  58. d9dfaa9 Issue #6137: The pickle module now translates module names when loading by Antoine Pitrou · 15 years ago
  59. ebfecfd Only try to intern str objects when unpickling attributes. by Alexandre Vassalotti · 15 years ago
  60. a9f48a0 Merged revisions 72223 via svnmerge from by Antoine Pitrou · 15 years ago
  61. 8dd0514 Issue #4842, patch 1/2: fix pickle in Python 3.x so that pickling with the by Mark Dickinson · 15 years ago
  62. 49956b2 fix typo #4904 by Benjamin Peterson · 15 years ago
  63. 3cfcab9 Fix issue #4374: Pickle tests fail w/o _pickle extension. by Alexandre Vassalotti · 15 years ago
  64. b46a633 Sorry, r67092 is commit miss.... by Hirokazu Yamamoto · 16 years ago
  65. 1543a22 Blocked revisions 67002 via svnmerge by Hirokazu Yamamoto · 16 years ago
  66. e8022b4 Remove a confusing statement in Pickler's docstring. by Alexandre Vassalotti · 16 years ago
  67. ca2d610 Restore _pickle module accelerator module. by Alexandre Vassalotti · 16 years ago
  68. 75f25f2 revert the addition of _pickle because it was causing havok with 64-bit by Benjamin Peterson · 16 years ago
  69. 66b343b Removed exception renaming cruft in pickle.py. by Alexandre Vassalotti · 16 years ago
  70. cc31306 Issue 2917: Merge the pickle and cPickle module. by Alexandre Vassalotti · 16 years ago
  71. c7db1d6 Change Pickler._batch_appends() and Pickler._batch_setitems() to take by Alexandre Vassalotti · 16 years ago
  72. f7fa63d Rename copy_reg module to copyreg. by Alexandre Vassalotti · 16 years ago
  73. 8cb02b6 Removed memoryview objects from bytes_types. by Alexandre Vassalotti · 16 years ago
  74. f416981 - A new pickle protocol (protocol 3) is added with explicit support by Guido van Rossum · 16 years ago
  75. 254348e Rename buffer -> bytearray. by Guido van Rossum · 17 years ago
  76. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  77. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
  78. feea078 Random changes having to do with readline() and bytes. by Guido van Rossum · 17 years ago
  79. 26d95c3 More str/bytes fixes. by Guido van Rossum · 17 years ago
  80. 39478e8 Changes in anticipation of stricter str vs. bytes enforcement. by Guido van Rossum · 17 years ago
  81. 99603b0 Getting rid of cPickle. Mmm, feels good! by Guido van Rossum · 17 years ago
  82. f93254d Fix test_pickle, by reverting the string opcodes (S, T, U) to returning by Guido van Rossum · 17 years ago
  83. 10a60b3 Change Py_BuildValue to generate Unicode objects for by Martin v. Löwis · 17 years ago
  84. aa588c4 Fix some problems introduced by the str8 repr change. by Guido van Rossum · 17 years ago
  85. 42748a8 Rip out all codecs that can't work in a unicode/bytes world: by Walter Dörwald · 17 years ago
  86. 1325790 Merged revisions 55795-55816 via svnmerge from by Guido van Rossum · 17 years ago
  87. d59da4b Merged revisions 55407-55513 via svnmerge from by Guido van Rossum · 17 years ago
  88. a8add0e Merged revisions 55270-55324 via svnmerge from by Guido van Rossum · 17 years ago
  89. cfe5f20 Got test_pickletools and test_pickle working. by Guido van Rossum · 17 years ago
  90. b8142c3 Got test_exceptions.py working. by Guido van Rossum · 17 years ago
  91. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  92. 1255ed6 Much more pickling now works. by Guido van Rossum · 17 years ago
  93. 2e6a4b3 Checkpoint. Make pickle.py read/write bytes. by Guido van Rossum · 17 years ago
  94. ef87d6e Rip out all the u"..." literals and calls to unicode(). by Guido van Rossum · 17 years ago
  95. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  96. 650f0d0 Hide list comp variables and support set comprehensions by Nick Coghlan · 17 years ago
  97. 634e53f Fix a bizarre error where test_pickletools fails if preceded by test_pyclbr. by Guido van Rossum · 17 years ago
  98. cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 17 years ago
  99. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 17 years ago
  100. ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 17 years ago