1. fbd861b An #endif was missing in Just's patch. Added. by Jack Jansen · 21 years ago
  2. 2ac79ef removing one Mac hack and add another: by Just van Rossum · 21 years ago
  3. 73d538b Always initialize Py_FileSystemDefaultEncoding on Unix in Py_Initialize, by Martin v. Löwis · 21 years ago
  4. 7a924e6 Patch #696645: Remove VMS code with uncertain authorship. by Martin v. Löwis · 21 years ago
  5. 6a42183 os.listdir(): Fall back to the original byte string if conversion to unicode by Just van Rossum · 21 years ago
  6. 12e2217 Fix SF #692416, don't crash interpreter for _tkinter.deletefilehandler by Neal Norwitz · 21 years ago
  7. 2fe07fd plugged leak noted by nnorwitz: the 'et' format returns allocated memory by Just van Rossum · 21 years ago
  8. 96b1c90 Patch #683592 revisited, after discussions with MvL: by Just van Rossum · 21 years ago
  9. f008998 Fix bug by Michael W. Hudson · 21 years ago
  10. 7f13489 Don't crash on _tkinter.createfilehandler in non-threaded Tcl; by Martin v. Löwis · 21 years ago
  11. d9efdc5 get_completer() takes no args by Neal Norwitz · 21 years ago
  12. d1a283b Several of the tools can make direct calls the inner iterators. by Raymond Hettinger · 21 years ago
  13. 3f5fcc8 Fix SF bug #690012 (among others), iconv_codec stops build by Neal Norwitz · 21 years ago
  14. f4ecc75 use proper constant instead of comment (noted by nnorwitz) by Just van Rossum · 21 years ago
  15. e9c571f Fix SF bug #694816, remove comparison of unsigned value < 0 by Neal Norwitz · 21 years ago
  16. 46c9784 Patch #683592: unicode support for os.listdir() by Just van Rossum · 21 years ago
  17. dd8766a Change the test encoding from "ISO8859-1" to "ISO-8859-1" by Walter Dörwald · 21 years ago
  18. 937ca98 SF patch #687598, array.append is sloooow by Neal Norwitz · 21 years ago
  19. 61fe64d User requested changes to the itertools module. by Raymond Hettinger · 21 years ago
  20. e9b851a Use 'ISO8859-1' instead of 'ASCII' when testing whether byteswapping by Walter Dörwald · 21 years ago
  21. c355f0c flex_complete looks like a private (but callback) function, so make it static by Neal Norwitz · 21 years ago
  22. b76bdf8 The connect timeout code wasn't working on Windows. by Guido van Rossum · 21 years ago
  23. 6297a7a - PyEval_GetFrame() is now declared to return a PyFrameObject * by Guido van Rossum · 21 years ago
  24. 05107b6 os.mkdir() would crash with a Unicode filename and mode param. by Mark Hammond · 21 years ago
  25. b289b87 Use __reduce_ex__. by Guido van Rossum · 21 years ago
  26. b9ce7cd save_global(): Trying to resolve module.name can fail for two by Tim Peters · 21 years ago
  27. 55dc26c Fold some long lines. by Guido van Rossum · 21 years ago
  28. 0c0aad9 Fix 64-bit problem, ParseTuple("i") needs C ints; ("l") needs C longs. by Neal Norwitz · 21 years ago
  29. e241ce8 Added test_posix (hopefully it works on Windows). by Neal Norwitz · 21 years ago
  30. 5c1ba53 Use correct function name to PyArg_ParseTuple("is_package"). by Neal Norwitz · 21 years ago
  31. 0ae4c4a8 Make 2 module variables static. Assuming this is correct. by Neal Norwitz · 21 years ago
  32. 080c88b cPickle.c, load_build(): Taught cPickle how to pick apart by Tim Peters · 21 years ago
  33. 71fcda5 cPickle produces NEWOBJ appropriately now. It still doesn't know by Tim Peters · 21 years ago
  34. 92c8bb3 Minor assorted cleanups; no semantic changes. by Tim Peters · 21 years ago
  35. aae53d4 The version of PyImport_Import() in cPickle is no longer needed (an edited by Tim Peters · 21 years ago
  36. 5aa3da6 save(): Reformat tail end just for clarity. by Tim Peters · 21 years ago
  37. 7297650 Another dummy type. by Guido van Rossum · 21 years ago
  38. eab7db3 Taught cPickle how to read pickles containing NEWOBJ. This won't get by Tim Peters · 21 years ago
  39. 8587b3c Added a HIGHEST_PROTOCOL module attribute to pickle and cPickle. by Tim Peters · 21 years ago
  40. fe62bc9 Conditionalize another constant by Andrew M. Kuchling · 21 years ago
  41. 1df9fdd socket_inet_aton(): ip_addr was left undefined before use in the by Tim Peters · 21 years ago
  42. 88f115b Ummm, try to get it right this time by Neal Norwitz · 21 years ago
  43. 10b214c Use configure to check for inet_aton. by Neal Norwitz · 21 years ago
  44. ad05cdf Addressing SF bug #643005, implement socket.inet_aton() using by Guido van Rossum · 21 years ago
  45. 90975f1 Minor cleanup of new batch-list/dict code. by Tim Peters · 21 years ago
  46. ec74f2f Add more missing PyErr_NoMemory() after failled memory allocs by Neal Norwitz · 21 years ago
  47. 42f08ac Implemented batching for dicts in cPickle. This is after two failed by Tim Peters · 21 years ago
  48. 9eb67ea Add Str, a subclass of str. by Guido van Rossum · 21 years ago
  49. 1092d64 Implemented list batching in cPickle. by Tim Peters · 21 years ago
  50. a33d0aa Unparenting BZ2File, as discussed in SF patch #661796. by Gustavo Niemeyer · 21 years ago
  51. 5f322d3 SF bug 684667: Modules/selectmodule.c returns NULL without exception set. by Tim Peters · 21 years ago
  52. 0c10015 Patch #676839: Cygwin _iconv_codec module patch by Jason Tishler · 21 years ago
  53. 8437570 Patch #676837: Cygwin array module patch by Jason Tishler · 21 years ago
  54. 4adc9ab Fix memory leak of newstr when putenv() fails by Neal Norwitz · 21 years ago
  55. e4b5500 Remove duplicate code introduced by fixing bug #678518 by Neal Norwitz · 21 years ago
  56. d58f3fc Remove unused variable. by Guido van Rossum · 21 years ago
  57. 60eca93 C Code: by Raymond Hettinger · 21 years ago
  58. df1252d Apply logistix's patch from by Michael W. Hudson · 21 years ago
  59. aa7d849 timedelta comparison and datetime addition: as the Python implementation by Tim Peters · 21 years ago
  60. 07534a6 Comparison for timedelta, time, date and datetime objects: __eq__ and by Tim Peters · 21 years ago
  61. 4d933fe SF patch #682514, mmapmodule.c write fix for LP64 executables by Neal Norwitz · 21 years ago
  62. f0c0024 * Eliminated tuple re-use in imap(). Doing it correctly made the code by Raymond Hettinger · 21 years ago
  63. 2012f17 SF bug #681003: itertools issues by Raymond Hettinger · 21 years ago
  64. dab8b0a Integrate the patch from expat.h 1.51; needed for some C compilers. by Fred Drake · 21 years ago
  65. 6288e23 More typo repair. by Tim Peters · 21 years ago
  66. 6792014 Typo repair. by Tim Peters · 21 years ago
  67. 3e667d5 cPickle: exempt two_tuple from GC -- it's a speed hack, and doesn't by Tim Peters · 21 years ago
  68. 731098b cPickle now generates proto 2 EXT[124] when appropriate. by Tim Peters · 21 years ago
  69. 7fe16e7 Remove forward static reference since it is not required by Neal Norwitz · 21 years ago
  70. ce3d34d Whitespace normalization by Neal Norwitz · 21 years ago
  71. 29273c8 Fix for [ 543344 ] Interpreter crashes when recoding; suggested by Marc-André Lemburg · 21 years ago
  72. bda1c86 Use size_t instead of int for various variables to prevent by Walter Dörwald · 21 years ago
  73. fa05ce3 Typo in comment. by Tim Peters · 21 years ago
  74. 2d62965 cPickle can load pickles using proto 2 EXT[124] now, but can't yet by Tim Peters · 21 years ago
  75. d4b920c Rename the extension registry variables to have leading underscores -- by Guido van Rossum · 21 years ago
  76. 0dd23aa Typo repair. by Tim Peters · 21 years ago
  77. 5b7da39 Brought some module variables into synch with pickle.py's current values. by Tim Peters · 21 years ago
  78. 0c7c48e load_counted_long(): Changed a ValueError to an UnpicklingError, just by Tim Peters · 21 years ago
  79. 7d9ea50 - Thanks to Scott David Daniels, a subtle bug in how the zlib by Guido van Rossum · 21 years ago
  80. e0a3907 PDATA_PUSH and PDATA_APPEND. documented, and reformatted for better by Tim Peters · 21 years ago
  81. 3ed7b03 version 4.1.4 (4.1.3 just released) by Gregory P. Smith · 21 years ago
  82. 1d63c9f cPickle support for TUPLE[123]. Incidentally plugged several undetected by Tim Peters · 21 years ago
  83. 0bc93f5 Massive edits. If p is a pointer to a struct, and p->f is a pointer to by Tim Peters · 21 years ago
  84. ac5687a Minor cleanup, mostly adding horizontal whitespace, and breaking apart by Tim Peters · 21 years ago
  85. 3c67d79 Implemented proto 2 NEWTRUE and NEWFALSE in cPickle. by Tim Peters · 21 years ago
  86. d156c2d Get ossaudiodev to compile on freebsd 4.7 by Neal Norwitz · 21 years ago
  87. 70b02d7 Beefed up the tests by putting in more "for proto in protocols:" outer by Tim Peters · 21 years ago
  88. 529baf2 Fix compiler warning by Neal Norwitz · 21 years ago
  89. 87482ea dump(): Added asserts that self->proto is sane. by Tim Peters · 21 years ago
  90. 9b1e03f dump(): Fixed a stupid bug in new code. It wasn't possible for the bug by Tim Peters · 21 years ago
  91. 4190fb8 Add cPickle support for PROTO. Duplicated PROTO/LONG1/LONG4 code in by Tim Peters · 21 years ago
  92. 06dd8cf Fix memory leak: free memory storing the content model passed to the by Fred Drake · 21 years ago
  93. ee1a53c cPickle.c: Full support for the new LONG1 and LONG4. Added comments. by Tim Peters · 21 years ago
  94. 5bd2a79 The C pickle now knows how to deal with a proto= argument. Assorted by Tim Peters · 21 years ago
  95. 040e033 Removed needless include of errno.h. by Tim Peters · 21 years ago
  96. 64c04d1 The module docstring had an RCS ID from 1999 embedded in it. Enough by Tim Peters · 21 years ago
  97. cba30e2 Trimmed trailing whitespace. by Tim Peters · 21 years ago
  98. 797ec24 Added #defines for proto 2 opcodes; gave the Pickler a proto member; by Tim Peters · 21 years ago
  99. 70533e2 New functions alloc_{time,datetime}. Got rid of all setstate-like by Tim Peters · 21 years ago
  100. b57f8f0 There's no good reason for datetime objects to expose __getstate__() by Tim Peters · 21 years ago