1. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
  2. 17b8e97 Merge change 54909 from release25-maint: Fix several minor issues discovered using code analysis in VisualStudio 2005 Team Edition by Kristján Valur Jónsson · 17 years ago
  3. 7ccbca9 Forward-port of r52136,52138: a review of overflow-detecting code. by Armin Rigo · 18 years ago
  4. 99dfe3c Prevent memory leak on error. by Neal Norwitz · 18 years ago
  5. 98a9600 Fix memory leaks spotted by Klocwork #37. by Neal Norwitz · 18 years ago
  6. b59d08c Fix more memory allocation issues found with failmalloc. by Neal Norwitz · 18 years ago
  7. 0f8b31a Fix bug #1512695: cPickle.loads could crash if it was interrupted with by Neal Norwitz · 18 years ago
  8. 96a8c39 Make use of METH_O and METH_NOARGS where possible. by Georg Brandl · 18 years ago
  9. 7b9558d Conversion of exceptions over from faked-up classes to new-style C types. by Richard Jones · 18 years ago
  10. 684fd0c Replace PyObject_CallFunction calls with only object args by Georg Brandl · 18 years ago
  11. de9b624 Bug #1473625: stop cPickle making float dumps locale dependent in protocol 0. by Georg Brandl · 18 years ago
  12. c6e5506 Use Py_VISIT in all tp_traverse methods, instead of traversing manually or by Thomas Wouters · 18 years ago
  13. edf17d8 Use Py_CLEAR instead of in-place DECREF/XDECREF or custom macros, for by Thomas Wouters · 18 years ago
  14. b183a25 Fix some warnings on HP-UX when using cc/aCC by Neal Norwitz · 19 years ago
  15. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
  16. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  17. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 19 years ago
  18. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  19. a6b45cc Eliminate the deprecated option to return None instead of a tuple of arguments in __reduce__(). by Raymond Hettinger · 20 years ago
  20. 544f119 Patch #995766: Keyword argument support in cPickle. by Martin v. Löwis · 20 years ago
  21. 737ea82 Patch #774665: Make Python LC_NUMERIC agnostic. by Martin v. Löwis · 20 years ago
  22. 2460c62 made cPickle fall back to the copy_reg/reduce protocol, by Christian Tismer · 21 years ago
  23. 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 21 years ago
  24. fff093f The Unpickler forget about its find_class attribute. by Jeremy Hylton · 21 years ago
  25. f00368f Remove many blanket try/except clauses. by Jeremy Hylton · 21 years ago
  26. 3cfe754 PyType_Ready(): Complain if the type is a base type, and gc'able, and by Tim Peters · 21 years ago
  27. 7b5ce7f Make Unpickler objects colletable. by Jeremy Hylton · 22 years ago
  28. 4cf6319 Make Picklers collectable. by Jeremy Hylton · 22 years ago
  29. 9905b94 New private API functions _PyFloat_{Pack,Unpack}(4,8}. This is a by Tim Peters · 22 years ago
  30. d50ade6 SF bug 705836: struct.pack of floats in non-native endian order by Tim Peters · 22 years ago
  31. b289b87 Use __reduce_ex__. by Guido van Rossum · 22 years ago
  32. b9ce7cd save_global(): Trying to resolve module.name can fail for two by Tim Peters · 22 years ago
  33. 0ae4c4a Make 2 module variables static. Assuming this is correct. by Neal Norwitz · 22 years ago
  34. 080c88b cPickle.c, load_build(): Taught cPickle how to pick apart by Tim Peters · 22 years ago
  35. 71fcda5 cPickle produces NEWOBJ appropriately now. It still doesn't know by Tim Peters · 22 years ago
  36. 92c8bb3 Minor assorted cleanups; no semantic changes. by Tim Peters · 22 years ago
  37. aae53d4 The version of PyImport_Import() in cPickle is no longer needed (an edited by Tim Peters · 22 years ago
  38. 5aa3da6 save(): Reformat tail end just for clarity. by Tim Peters · 22 years ago
  39. eab7db3 Taught cPickle how to read pickles containing NEWOBJ. This won't get by Tim Peters · 22 years ago
  40. 8587b3c Added a HIGHEST_PROTOCOL module attribute to pickle and cPickle. by Tim Peters · 22 years ago
  41. 90975f1 Minor cleanup of new batch-list/dict code. by Tim Peters · 22 years ago
  42. 42f08ac Implemented batching for dicts in cPickle. This is after two failed by Tim Peters · 22 years ago
  43. 1092d64 Implemented list batching in cPickle. by Tim Peters · 22 years ago
  44. 6288e23 More typo repair. by Tim Peters · 22 years ago
  45. 6792014 Typo repair. by Tim Peters · 22 years ago
  46. 3e667d5 cPickle: exempt two_tuple from GC -- it's a speed hack, and doesn't by Tim Peters · 22 years ago
  47. 731098b cPickle now generates proto 2 EXT[124] when appropriate. by Tim Peters · 22 years ago
  48. fa05ce3 Typo in comment. by Tim Peters · 22 years ago
  49. 2d62965 cPickle can load pickles using proto 2 EXT[124] now, but can't yet by Tim Peters · 22 years ago
  50. d4b920c Rename the extension registry variables to have leading underscores -- by Guido van Rossum · 22 years ago
  51. 0dd23aa Typo repair. by Tim Peters · 22 years ago
  52. 5b7da39 Brought some module variables into synch with pickle.py's current values. by Tim Peters · 22 years ago
  53. 0c7c48e load_counted_long(): Changed a ValueError to an UnpicklingError, just by Tim Peters · 22 years ago
  54. e0a3907 PDATA_PUSH and PDATA_APPEND. documented, and reformatted for better by Tim Peters · 22 years ago
  55. 1d63c9f cPickle support for TUPLE[123]. Incidentally plugged several undetected by Tim Peters · 22 years ago
  56. 0bc93f5 Massive edits. If p is a pointer to a struct, and p->f is a pointer to by Tim Peters · 22 years ago
  57. ac5687a Minor cleanup, mostly adding horizontal whitespace, and breaking apart by Tim Peters · 22 years ago
  58. 3c67d79 Implemented proto 2 NEWTRUE and NEWFALSE in cPickle. by Tim Peters · 22 years ago
  59. 70b02d7 Beefed up the tests by putting in more "for proto in protocols:" outer by Tim Peters · 22 years ago
  60. 529baf2 Fix compiler warning by Neal Norwitz · 22 years ago
  61. 87482ea dump(): Added asserts that self->proto is sane. by Tim Peters · 22 years ago
  62. 9b1e03f dump(): Fixed a stupid bug in new code. It wasn't possible for the bug by Tim Peters · 22 years ago
  63. 4190fb8 Add cPickle support for PROTO. Duplicated PROTO/LONG1/LONG4 code in by Tim Peters · 22 years ago
  64. ee1a53c cPickle.c: Full support for the new LONG1 and LONG4. Added comments. by Tim Peters · 22 years ago
  65. 5bd2a79 The C pickle now knows how to deal with a proto= argument. Assorted by Tim Peters · 22 years ago
  66. 040e033 Removed needless include of errno.h. by Tim Peters · 22 years ago
  67. 64c04d1 The module docstring had an RCS ID from 1999 embedded in it. Enough by Tim Peters · 22 years ago
  68. cba30e2 Trimmed trailing whitespace. by Tim Peters · 22 years ago
  69. 797ec24 Added #defines for proto 2 opcodes; gave the Pickler a proto member; by Tim Peters · 22 years ago
  70. 1f1b2d2 Removed all uses of the out-of-favor __safe_for_unpickling__ magic by Tim Peters · 22 years ago
  71. 8e0ad0c Ignore the state returned by __reduce__ if it is Py_None. by Guido van Rossum · 22 years ago
  72. fb8595d Patch #661760: Cygwin auto-import module patch by Jason Tishler · 22 years ago
  73. 75bfd05 Add an XXX comment about relative imports. by Guido van Rossum · 22 years ago
  74. 4e52ca8 A patch from Kevin Jacobs, plugging several leaks discovered when by Tim Peters · 22 years ago
  75. 658009a Make BadPickleGet a class. Fixes #609164. by Martin v. Löwis · 22 years ago
  76. 8a8da79 Patch #505705: Remove eval in pickle and cPickle. by Martin v. Löwis · 22 years ago
  77. 200788c Allow more docstrings to be removed during compilation in some modules by Neal Norwitz · 22 years ago
  78. 5a39530 Add recursion counter for pickling. Fixes #576084. by Martin v. Löwis · 22 years ago
  79. fe51c6d Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype by Mark Hammond · 22 years ago
  80. 7fa4bfa Fix indentation. by Jeremy Hylton · 22 years ago
  81. 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
  82. 39c6116 Given the persistent id code a shot at a class before calling save_global(). by Jeremy Hylton · 22 years ago
  83. 9ee91f1 remove decl of unused variable by Jeremy Hylton · 22 years ago
  84. 0e1f7a8 Do more robust test of whether global objects are accessible. by Jeremy Hylton · 22 years ago
  85. 3a96702 Undefine TRUE and FALSE before redefining them. by Jack Jansen · 22 years ago
  86. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  87. 0ebacc8 Pickler_clear_memo(): convert to METH_NOARGS. by Fred Drake · 22 years ago
  88. 5de9842 Repair widespread misuse of _PyString_Resize. Since it's clear people by Tim Peters · 22 years ago
  89. 8ee3cd4 #546156, Remove load_false()/load_true(), they are not used by Neal Norwitz · 22 years ago
  90. e276339 Implement an idea by Paul Rubin: by Guido van Rossum · 23 years ago
  91. 2e1c09c Removed old Digital Creations copyright/license notices (with by Guido van Rossum · 23 years ago
  92. 77f6a65 Add the 'bool' type and its values 'False' and 'True', as described in by Guido van Rossum · 23 years ago
  93. 2f6ef4c Reindent. Break long lines. Move comments before the statements. by Martin v. Löwis · 23 years ago
  94. 43c9d8a Remove UNLESS. by Martin v. Löwis · 23 years ago
  95. b049325 Use symbolic METH_VARARGS/METH_OLDARGS instead of 1/0 for ml_flags by Neal Norwitz · 23 years ago
  96. fa79c65 Match behavior of the pickle.py module more closely. by Neil Schemenauer · 23 years ago
  97. 52acb49 Merge of the release22 branch changes back into the trunk. by Barry Warsaw · 23 years ago
  98. 950dce6 save(): Fix for SF bug #494904: Cannot pickle a class with a by Guido van Rossum · 23 years ago
  99. 1464839 Patch supplied by Burton Radons for his own SF bug #487390: Modifying by Guido van Rossum · 23 years ago
  100. 179c48c Use PyOS_snprintf() instead of sprintf(). by Jeremy Hylton · 23 years ago