1. fa79c65 Match behavior of the pickle.py module more closely. by Neil Schemenauer · 22 years ago
  2. 52acb49 Merge of the release22 branch changes back into the trunk. by Barry Warsaw · 23 years ago
  3. 950dce6 save(): Fix for SF bug #494904: Cannot pickle a class with a by Guido van Rossum · 23 years ago
  4. 1464839 Patch supplied by Burton Radons for his own SF bug #487390: Modifying by Guido van Rossum · 23 years ago
  5. 179c48c Use PyOS_snprintf() instead of sprintf(). by Jeremy Hylton · 23 years ago
  6. 9b481ff A change to sync with pickle.py: by Barry Warsaw · 23 years ago
  7. bf5ca65 load_string(): Force use of unsigned compare in a context that was by Tim Peters · 23 years ago
  8. 03f96bd Fixes to compile cPickle.c & socketmodule.c on cygwin and possibly by Michael W. Hudson · 23 years ago
  9. 3eb46f3 Must terminate the Pickler_members[] and Pickler_getsets with NULL. by Jeremy Hylton · 23 years ago
  10. 499ab6a Better fix for core dumps on recursive objects in fast mode. by Jeremy Hylton · 23 years ago
  11. a0fb177 Progress on SF bug #466175 and general cleanup. by Jeremy Hylton · 23 years ago
  12. 12778e3 load_int: The fallback to long ints was coded in such a way that it by Tim Peters · 23 years ago
  13. a92d16a SF patch #452239 by Gordon McMillan, to fix SF bug #451547. by Guido van Rossum · 23 years ago
  14. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 23 years ago
  15. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  16. 2c7a685 Remove code to initialize globals that are never used. by Fred Drake · 23 years ago
  17. d8ae7c2 Ack -- this module mixes tabs and spaces, and what appears to be a mix by Tim Peters · 23 years ago
  18. 3906eb8 On a sizeof(long)==8 machine, ints in range(2**31, 2**32) were getting by Tim Peters · 23 years ago
  19. bfa18f7 Critical fix: if cPickle on a sizeof(long)==8 box is used to read a by Tim Peters · 23 years ago
  20. 2c77355 Make cPickle use the recently-added PyInstance_NewRaw() API to create by Fred Drake · 23 years ago
  21. 84e87f3 SF bug [ #233200 ] cPickle does not use Py_BEGIN_ALLOW_THREADS. by Tim Peters · 23 years ago
  22. fb10c3f Minimal fix for the complaints about pickling Unicode objects. (SF by Guido van Rossum · 24 years ago
  23. 5196c58 - Fix a GC bug caused by PyDict_New() failing. by Neil Schemenauer · 24 years ago
  24. ebba420 Oops. Jim's fix didn't. This one does -- I tested it a bit better this time! by Guido van Rossum · 24 years ago
  25. c84d8bd Simple fix from Jin Fulton to avoid returning a half-initialized by Guido van Rossum · 24 years ago
  26. 6c116dd Use safer comparisons (only matters when sizeof(int) != sizeof(size_t)). fread by Trent Mick · 24 years ago
  27. 7e01890 merge Include/my*.h into Include/pyport.h by Peter Schneider-Kamp · 24 years ago
  28. 58d0510 ANSIfy some more forward declarations. by Thomas Wouters · 24 years ago
  29. 4789b3a ... and yet more ANSIfications... by Thomas Wouters · 24 years ago
  30. 3b6448f ANSIfication: add proper prototypes to function-pointers and declarations. by Thomas Wouters · 24 years ago
  31. 03657cf replace PyXXX_Length calls with PyXXX_Size calls by Jeremy Hylton · 24 years ago
  32. c5007aa final patches from Neil Schemenauer for garbage collection by Jeremy Hylton · 24 years ago
  33. 534b7c5 Trent Mick: by Guido van Rossum · 24 years ago
  34. ea2b715 New version from Jim Fulton to fix a problem that Eric Raymond ran by Guido van Rossum · 24 years ago
  35. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  36. 83addc7 Charles Waldman writes: by Guido van Rossum · 24 years ago
  37. 5fccb7c Marc-Andre Lemburg: support pickling Unicode objects, both in text by Guido van Rossum · 24 years ago
  38. 43713e5 Massive patch by Skip Montanaro to add ":name" to as many by Guido van Rossum · 24 years ago
  39. 2f80d96 Patch by Stephen Turner, who writes: by Guido van Rossum · 25 years ago
  40. c3be1a3 New version from Jim: by Guido van Rossum · 25 years ago
  41. c03158b Jim Fulton writes: by Guido van Rossum · 25 years ago
  42. 1b9e0aa Jim Fulton writes: by Guido van Rossum · 25 years ago
  43. 761fcd0 Fix accidentally reversed NULL test in load_mark(). Suggested by by Guido van Rossum · 25 years ago
  44. c91fcaa Protection against picling to/from closed (real) file. by Guido van Rossum · 25 years ago
  45. d1f66dc Fix buglet in load_put -- the test for bad readline result tested the by Guido van Rossum · 25 years ago
  46. f9ffb03 Jim Fulton: this fixes seg faults with bad pickles like "c". by Guido van Rossum · 25 years ago
  47. aa8d167 Make sure not to call realloc() with a NULL pointer -- call malloc() by Guido van Rossum · 26 years ago
  48. 21ef088 Need to initialize self->safe_constructors early on to prevent crash by Guido van Rossum · 26 years ago
  49. e94e3fb Make VC++ 5.0 compiler happy. by Guido van Rossum · 26 years ago
  50. 50f385c Fix two small bugs; add DL_EXPORT() to initcPickle decl. by Guido van Rossum · 26 years ago
  51. 053b8df New version from Jim Fulton: by Guido van Rossum · 26 years ago
  52. ce616e4 Enter Jim Fulton's latest version. He writes: by Jeremy Hylton · 26 years ago
  53. d105523 Two fixes to find_class: by Jeremy Hylton · 26 years ago
  54. e2d81cd Jim Fulton's patches to get rid of the class_map(). by Guido van Rossum · 26 years ago
  55. 764b984 Use PyErr_ExceptionMatches(...) instead of PyErr_Occurred() == ... in two by Fred Drake · 26 years ago
  56. ed33a3f whichmodule(): remove redundant PyErr_Clear(); add explicit setting by Guido van Rossum · 26 years ago
  57. 104be4a Use %.17f to format floats/doubles by Guido van Rossum · 26 years ago
  58. 8a6dba3 Clear class_map in constructor so that when it later detects an error by Guido van Rossum · 26 years ago
  59. 57d9f2e Renamed Jim's PyErr_[JF]Format() to cPickle_ErrFormat(). It's not a by Guido van Rossum · 27 years ago
  60. 9716aaa Jim Fulton: by Guido van Rossum · 27 years ago
  61. fdde96c New versions of cPickle and cStringIO, from Jim Fulton's cPickle 1.0b1 by Guido van Rossum · 27 years ago
  62. f6e8316 Initialize __version__ to the correct version string regardless of by Guido van Rossum · 27 years ago
  63. 4518823 In whichmodule(), use __module__ if set. by Guido van Rossum · 27 years ago
  64. 9efe8ef #Plug small memory leaks in constructors. by Guido van Rossum · 27 years ago
  65. 779133c Removed JF's dollar-Log-dollar RCS turd that caused compilation to by Barry Warsaw · 27 years ago
  66. c6ef204 Added /**/ around #end tags by Guido van Rossum · 27 years ago
  67. 725d941 Renamed strndup to pystrndup, to avoid conflicting prototype by Guido van Rossum · 27 years ago
  68. 142eeb8 cPickle release 0.3 from Jim Fulton by Guido van Rossum · 27 years ago
  69. 5a37d7d Renamed strndup to my_strndup to avoid conflict witth GNU libc. by Guido van Rossum · 27 years ago
  70. de8d6d7 Use compile-time test for 64-bit hardware instead of run-time test. by Guido van Rossum · 27 years ago
  71. b05a5c7 Instead of importing graminit.h whenever one of the three grammar 'root' by Guido van Rossum · 27 years ago
  72. d385d59 Give PyErr_Format a new name and make it static. by Guido van Rossum · 27 years ago
  73. 60456fd Jim Fulton's version 2.2. by Guido van Rossum · 27 years ago
  74. 93d29b6 Eliminated gcc -Wall complaints: by Barry Warsaw · 28 years ago
  75. 2f4caa4 cPickle, version 0.1. by Guido van Rossum · 28 years ago