1. 983b008 Updated version of [ 558544 ] cmd.py: add instance-specific stdin/out by Anthony Baxter · 22 years ago
  2. 64edd6a [Patch #654421 from Matthew Mueller] by Andrew M. Kuchling · 22 years ago
  3. 62235e7 dis(): Added an optional memo argument, so that multiple pickles in a by Tim Peters · 22 years ago
  4. 6ee0480 [680789] Debug with long array takes forever by Tim Peters · 22 years ago
  5. 5c4ded2 Patch #551977: Regression exceptions for cygwin by Jason Tishler · 22 years ago
  6. cf0b2e8 Getting rid of macfs and FSSpecs. by Jack Jansen · 22 years ago
  7. d66071b Got rid of macfs by Jack Jansen · 22 years ago
  8. 769e1ff Fixed a few typos, and changed FSCreateResourceFile filename argument to unicode. by Jack Jansen · 22 years ago
  9. b86a2e8 Use os.path.realpath() in stead of abspath(), so the tests don't fail if by Jack Jansen · 22 years ago
  10. 30a634e SF patch #674396: Apply UserDict.DictMixin to expand dbshelve and dbojb by Raymond Hettinger · 22 years ago
  11. 35ad641 Build pickler_choices list in a lazier way. by Tim Peters · 22 years ago
  12. 3e667d5 cPickle: exempt two_tuple from GC -- it's a speed hack, and doesn't by Tim Peters · 22 years ago
  13. 731098b cPickle now generates proto 2 EXT[124] when appropriate. by Tim Peters · 22 years ago
  14. c3da83f Make sure filter() never returns tuple, str or unicode by Walter Dörwald · 22 years ago
  15. 29273c8 Fix for [ 543344 ] Interpreter crashes when recoding; suggested by Marc-André Lemburg · 22 years ago
  16. dbaba0d Added basic tests of copy_reg's extension registry. by Tim Peters · 22 years ago
  17. 5e61e24 Add a test that checks that filter() honors the sq_item slot for by Walter Dörwald · 22 years ago
  18. 903f1e0 filterstring() and filterunicode() in Python/bltinmodule.c by Walter Dörwald · 22 years ago
  19. 57ba55b - Handle the img and MediaFormat modules not being available (by not by Jack Jansen · 22 years ago
  20. 105b084 Add refcount test. by Raymond Hettinger · 22 years ago
  21. 2d62965 cPickle can load pickles using proto 2 EXT[124] now, but can't yet by Tim Peters · 22 years ago
  22. d4b920c Rename the extension registry variables to have leading underscores -- by Guido van Rossum · 22 years ago
  23. 322d553 Whitespace normalization. by Tim Peters · 22 years ago
  24. 5b7da39 Brought some module variables into synch with pickle.py's current values. by Tim Peters · 22 years ago
  25. e7028ac Fix typo. by Walter Dörwald · 22 years ago
  26. c350246 Add a new test script that tests various features of the sys by Walter Dörwald · 22 years ago
  27. 894453a test_newobj_tuple(), test_newobj_list(): These tests should work under by Tim Peters · 22 years ago
  28. 5013bd9 test_newobj_generic(): Use the global protocols vector instead of a by Tim Peters · 22 years ago
  29. 22e7171 Added a bit to the EXT[124] tests, and refactored them to squash code by Tim Peters · 22 years ago
  30. 61bf257 Do a better job of testing that opcodes aren't generated under protocols by Tim Peters · 22 years ago
  31. 7d9ea50 - Thanks to Scott David Daniels, a subtle bug in how the zlib by Guido van Rossum · 22 years ago
  32. 88af4df Fix typos. by Walter Dörwald · 22 years ago
  33. 363f6d6 Port test_pow.py to PyUnit. From SF patch #662807 by Walter Dörwald · 22 years ago
  34. 93fe564 _slotnames(): this is a fairly expensive calculation. Cache the by Guido van Rossum · 22 years ago
  35. 2de97d3 [Bug #676292] BaseHTTPServer incorrectly parses protocol; fix by Andrew Dalke by Andrew M. Kuchling · 22 years ago
  36. 868ecc2 _slotnames(): exclude __dict__ and __weakref__; these aren't real by Guido van Rossum · 22 years ago
  37. 795ea89 Support keyword argument 'bin', with a pending deprecation warning. by Guido van Rossum · 22 years ago
  38. 31f119e Proper testing of proto 2 in part requires checking that the new opcodes by Tim Peters · 22 years ago
  39. 7aa56c9 test_float_overflow(): make shuge (added last week) a little less by Guido van Rossum · 22 years ago
  40. 8ca202e Bug #676273: Rewrite paragraph in module docstring by Andrew M. Kuchling · 22 years ago
  41. 9a0db07 test_support.requires(): Instead of raising TestSkipped, raise a new by Fred Drake · 22 years ago
  42. 4c6c9c4 Add __all__ (suggested by Raymond Hettinger). by Greg Ward · 22 years ago
  43. 7a2d7a7 Remove test_b1 and test_b2 from the list of tests by Walter Dörwald · 22 years ago
  44. ca3fec7 patch #664131, fix config command on OSX and Linux by Just van Rossum · 22 years ago
  45. 35a92ce Fix bug by Michael W. Hudson · 22 years ago
  46. bc2adef fix for use on python 2.1 by Gregory P. Smith · 22 years ago
  47. 49992f9 cPickle now implements enough of protocol 2 to enable all cross-pickling tests. by Guido van Rossum · 22 years ago
  48. 7f3ed74 Fix typos. by Walter Dörwald · 22 years ago
  49. cc94764 Getting rid of macfs usage and almost all FSSpecs. Untested on MacOS9. by Jack Jansen · 22 years ago
  50. 1d63c9f cPickle support for TUPLE[123]. Incidentally plugged several undetected by Tim Peters · 22 years ago
  51. 9af6968 jeez, now I know why I shouldn't even _want_ to learn sh. by Just van Rossum · 22 years ago
  52. 3c67d79 Implemented proto 2 NEWTRUE and NEWFALSE in cPickle. by Tim Peters · 22 years ago
  53. 70b02d7 Beefed up the tests by putting in more "for proto in protocols:" outer by Tim Peters · 22 years ago
  54. 4190fb8 Add cPickle support for PROTO. Duplicated PROTO/LONG1/LONG4 code in by Tim Peters · 22 years ago
  55. 1ecfb73 One more use of ifilter() by Raymond Hettinger · 22 years ago
  56. a3a5318 SF patch #678899: Save time and memory by using itertools in sets module. by Raymond Hettinger · 22 years ago
  57. bf2674b long(string, base) now takes time linear in len(string) when base is a by Tim Peters · 22 years ago
  58. ee1a53c cPickle.c: Full support for the new LONG1 and LONG4. Added comments. by Tim Peters · 22 years ago
  59. 5bd2a79 The C pickle now knows how to deal with a proto= argument. Assorted by Tim Peters · 22 years ago
  60. a212c5c removed bizarre construct, no idea why it was there... by Just van Rossum · 22 years ago
  61. 2aa0956 icon support by Robin Dunn, closes patch #678218 by Just van Rossum · 22 years ago
  62. b57f8f0 There's no good reason for datetime objects to expose __getstate__() by Tim Peters · 22 years ago
  63. 874d9bc Neaten ref count test. by Raymond Hettinger · 22 years ago
  64. 1f1b2d2 Removed all uses of the out-of-favor __safe_for_unpickling__ magic by Tim Peters · 22 years ago
  65. 96ef811 Move itertools module from the sandbox and into production. by Raymond Hettinger · 22 years ago
  66. 96940c9 Changed the tests to stop using __setstate__(). __setstate__() no by Tim Peters · 22 years ago
  67. 9582794 Pass the preprocessor options also to the resource compiler by Thomas Heller · 22 years ago
  68. cf356fd Add extension management to __all__. by Guido van Rossum · 22 years ago
  69. 7eff63a Change the default protocol back to 0. by Guido van Rossum · 22 years ago
  70. 25cb7df Another extension to reduce(). It can return a 4- or 5-tuple now. by Guido van Rossum · 22 years ago
  71. 4f0dcc9 Provide __module__ attributes for functions defined in C and Python. by Jeremy Hylton · 22 years ago
  72. 01eb85c I believe this fixes by Michael W. Hudson · 22 years ago
  73. 2e0b18a Change the treatment of positions returned by PEP293 by Walter Dörwald · 22 years ago
  74. f7f4517 Pass the object to save_reduce(), so the memoize() call can go into by Guido van Rossum · 22 years ago
  75. d053b4b Add a magical feature to save_reduce so that __reduce__ can cause by Guido van Rossum · 22 years ago
  76. 4b23f2b It's Official: for LONG1/LONG4, a "byte count" of 0 is taken as a by Tim Peters · 22 years ago
  77. c1265bd Make StringIO its own iterator, similar to real files. by Guido van Rossum · 22 years ago
  78. 8cd0def M PyShell.py M rpc.py by Kurt B. Kaiser · 22 years ago
  79. d174068 Fix typo by Neal Norwitz · 22 years ago
  80. 9114982 Linear-time implementations of {encode,decode}_long. by Tim Peters · 22 years ago
  81. 1a17704 typo in comment by Barry Warsaw · 22 years ago
  82. 1e6ada0 Give people who run "pydoc re" a clue. by Neil Schemenauer · 22 years ago
  83. 177e41a Change the approach to pickling to use __reduce__ everywhere. Most by Guido van Rossum · 22 years ago
  84. e14295c pickle.py has a few doctest'ed internal functions, so run their tests. by Tim Peters · 22 years ago
  85. b4ff111 Check whether the choosen encoding requires byte swapping by Walter Dörwald · 22 years ago
  86. 2b93c4c Updated the INST/OBJ docs, to say they really are (almost) identical in 2.3. by Tim Peters · 22 years ago
  87. d01c1e9 load_inst(), load_obj(): Put the bulk of these into a common new by Tim Peters · 22 years ago
  88. 43277d6 dis(): Simplified stack emulation a bit. by Tim Peters · 22 years ago
  89. 9b40e80 There was a subtle big in save_newobj(): it used self.save_global(t) by Guido van Rossum · 22 years ago
  90. 4fba220 Slight code rearrangement to avoid testing getstate twice. by Guido van Rossum · 22 years ago
  91. 4548617 In save_newobj(), if an object's __getnewargs__ and __getstate__ are by Guido van Rossum · 22 years ago
  92. 0e44923 SF patch 672098: Three __contains__ implementations by Raymond Hettinger · 22 years ago
  93. ba884f3 Use %c rather than chr() to turn some ints into chars. by Guido van Rossum · 22 years ago
  94. c1c2b3e dis(): This had a problem with proto 0 pickles, in that POP sometimes by Tim Peters · 22 years ago
  95. 5d9113d Implement appropriate __getnewargs__ for all immutable subclassable builtin by Guido van Rossum · 22 years ago
  96. d3590f9 Only log a message and chmod() when the mode isn't already what we by Guido van Rossum · 22 years ago
  97. 6afc5e0 - The mac-specific tests should also be run on darwin. by Jack Jansen · 22 years ago
  98. 5445594 minor grammar tweaks by Skip Montanaro · 22 years ago
  99. 5e83b7a Teach the parsermodule about floor division. Fixes by Michael W. Hudson · 22 years ago
  100. 090da4b Moved aepack test code to the test suite. by Jack Jansen · 22 years ago