1. 85ee491 Fix for SF 502085. Don't die when issubclass(t, TypeType) fails. by Guido van Rossum · 22 years ago
  2. d5ba4ae SF #515018, delete global variable that was apparently used only by Neal Norwitz · 22 years ago
  3. f048a8f Pickler.save(): Fix for SF bug #494904: Cannot pickle a class with a by Guido van Rossum · 23 years ago
  4. bf4d959 Two changes: by Barry Warsaw · 23 years ago
  5. 20747fa A better new, unique object by Jeremy Hylton · 23 years ago
  6. abe2c62 Use cStringIO when available. by Jeremy Hylton · 23 years ago
  7. dbb718f Make these modules work when Python is compiled without Unicode support. by Guido van Rossum · 23 years ago
  8. 19ef62d pickle.py, load_int(): Match cPickle's just-repaired ability to unpickle by Tim Peters · 23 years ago
  9. b0a98e9 Address SF #451547. The approach is a bit draconian: any object that by Guido van Rossum · 23 years ago
  10. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  11. 4471400 test_pickle works on sizeof(long)==8 boxes again. by Tim Peters · 23 years ago
  12. c32d824 Mechanical fiddling for easier reading: every "if" test was enclosed in by Tim Peters · 23 years ago
  13. 23bafc6 add module-level constants to __all__ by Skip Montanaro · 23 years ago
  14. 658cba6 Whitespace normalization. by Tim Peters · 23 years ago
  15. 352674d a few more __all__ lists by Skip Montanaro · 23 years ago
  16. 31584cb Finn Bock (SF patch #103349): by Guido van Rossum · 24 years ago
  17. 2344fae Whitespace normalization. by Tim Peters · 24 years ago
  18. a31b4ef Minimal fix for the complaints about pickling Unicode objects. (SF by Guido van Rossum · 24 years ago
  19. ff87174 Get rid of string module and string exceptions. by Guido van Rossum · 24 years ago
  20. be467e5 Fix Bug #114293: by Jeremy Hylton · 24 years ago
  21. 26e89d0 Change string exceptions to class exceptions. by Guido van Rossum · 24 years ago
  22. b5f2f1b Marc-Andre Lemburg: support pickling Unicode objects, both in text by Guido van Rossum · 24 years ago
  23. 54f22ed More trivial comment -> docstring transformations by Ka-Ping Yee, who writes: by Guido van Rossum · 25 years ago
  24. 08a92cb Jeremy writes: by Guido van Rossum · 25 years ago
  25. 397032a Don't use "exec" in find_class(). It's slow, unnecessary, and (as AMK by Guido van Rossum · 25 years ago
  26. d370379 Jim Fulton writes: by Guido van Rossum · 26 years ago
  27. 743d17e In load_inst(), when instantiating an instance the old way (i.e. when by Guido van Rossum · 26 years ago
  28. 2b9d029 add handler for JPython's org.python.core.PyStringMap object, which by Jeremy Hylton · 26 years ago
  29. b19e2a3 Whoops! Add a missing 'instantiated = 1' to load_inst(); otherwise it by Guido van Rossum · 26 years ago
  30. b1062fc Correct dumb typo found by kjpylint (stack should be self.stack). by Guido van Rossum · 26 years ago
  31. 599174f Correct a definite typo ('mem' should be 'memo'). by Guido van Rossum · 26 years ago
  32. 45e2fbc Mass check-in after untabifying all files that need it. by Guido van Rossum · 26 years ago
  33. fe82acc Fixed typo in docstring: "__ version__" --> "__version__" by Fred Drake · 26 years ago
  34. abe2a45 Unpickler.load_inst(), Unpickler.load_obj(), Unpickler.load_build(): by Barry Warsaw · 27 years ago
  35. d1f4984 Jim Fulton writes: by Guido van Rossum · 27 years ago
  36. e680546 Don't specify base 0 to string.atoi when unpickling integers in text by Guido van Rossum · 27 years ago
  37. e467be6 When instantiating a class with no arguments and where the class does by Guido van Rossum · 27 years ago
  38. 4fb5b28 Three independent changes: by Guido van Rossum · 27 years ago
  39. d6ead32 *Semantic change*: when unpickling the instance variables of an by Guido van Rossum · 27 years ago
  40. 5ed5c4c Add the same _keep_alive patch (by Michael Scharff) that was added to by Guido van Rossum · 27 years ago
  41. 8be9a11 Restore two features of the original 1.4 pickle: by Guido van Rossum · 27 years ago
  42. 5a56649 Remove Digital Creations copyright (Jim sez it's okay). by Guido van Rossum · 27 years ago
  43. b72cf2d New version by Digital Creations, supports binary format compatible by Guido van Rossum · 27 years ago
  44. efd3a3a Implement find_class() without exec statement. by Guido van Rossum · 27 years ago
  45. 36fc11e Compromise on test in find_class(): a user-defined function is okay, by Guido van Rossum · 28 years ago
  46. abfd806 This is the third time I check in this change :-( by Guido van Rossum · 28 years ago
  47. 37a6f16 Slight update of doc string -- suggest default args for __init__, no by Guido van Rossum · 28 years ago
  48. c7c5e69 Optimizations and one intentional loophole by Jim Fulton. by Guido van Rossum · 28 years ago
  49. 955c5d1 Set the base for atoi() and atol() to 0, since we're reading Python by Guido van Rossum · 28 years ago
  50. 7853647 Don't atoi() the memo key. by Guido van Rossum · 28 years ago
  51. e0bfd50 correct typo (persis*ent) by Guido van Rossum · 29 years ago
  52. f71c79b test other name variable by Guido van Rossum · 29 years ago
  53. 48aa82e correct typo in example by Guido van Rossum · 29 years ago
  54. 0c891ce pickle classes; add format_version, load(s)/dump(s) shortcuts by Guido van Rossum · 29 years ago
  55. 7849da8 added PicklingError exception by Guido van Rossum · 29 years ago
  56. 7b5430f raise EOFError when load() hits EOF, instead of KeyError by Guido van Rossum · 29 years ago
  57. 256cbd7 minute comment changes by Guido van Rossum · 29 years ago
  58. a48061a shelve.py: database of persistent objects, on top of pickle.py and anydbm.py by Guido van Rossum · 30 years ago