1. 82ca59e save_dict(): Added a comment about the control flow NealN missed. by Tim Peters · 22 years ago
  2. 13a25fb _is_string_secure(): This method is no longer used; removed it. (It by Tim Peters · 22 years ago
  3. bc64e22 Made save() fit on a page, while adding comments. (I moved some type by Guido van Rossum · 22 years ago
  4. ad5a771 Got rid of the _quotes global. Used only once, and is trivial. by Tim Peters · 22 years ago
  5. 55762f5 Use raw-mode docstring whenever there's an escape code in an example -- by Tim Peters · 22 years ago
  6. 03e3532 _dis_test should be a raw string now that it contains \x escapes. by Guido van Rossum · 22 years ago
  7. d0f7c86 dis(): Not all opcodes are printable anymore, so print the repr by Tim Peters · 22 years ago
  8. 1be3175 Add a few comments. Change the way the protocol is checked (it must by Guido van Rossum · 22 years ago
  9. 3a41c61 Rename all variables 'object' to 'obj' to avoid conflicts with the by Guido van Rossum · 22 years ago
  10. 5702835 Fix one disassembly output now that empty tuples are no longer by Guido van Rossum · 22 years ago
  11. cbe2dbd Don't memoize the empty tuple in protocol 0. by Guido van Rossum · 22 years ago
  12. d97da80 save_tuple(): So long as the charter is rewriting for clarity, the snaky by Tim Peters · 22 years ago
  13. ff57bff save_tuple(): I believe the new code for TUPLE{1,2,3} in proto 2 was by Tim Peters · 22 years ago
  14. 81098ac Comments. by Tim Peters · 22 years ago
  15. fdc0346 Now that proto2 is defined, replaced XXX blocks with text about it. by Tim Peters · 22 years ago
  16. 7d97d31 OK, this is really the last one tonight! by Guido van Rossum · 22 years ago
  17. 025bc2f Shouldn't test short tuples with all items equal -- one potential bug by Guido van Rossum · 22 years ago
  18. 44f0ea5 More protocol 2: TUPLE1, TUPLE2, TUPLE3. by Guido van Rossum · 22 years ago
  19. 9d32bb1 Rename 'bin' arg to 'proto'. Keep the default at 0 lest the tests by Guido van Rossum · 22 years ago
  20. 3b76983 save_inst(): Rewrote to have only one branch on self.bin. Also got rid by Tim Peters · 22 years ago
  21. d6c9e63 First baby steps towards implementing protocol 2: PROTO, LONG1 and LONG4. by Guido van Rossum · 22 years ago
  22. d95c2df Fixed odd whitespace after "if", which I believe I introduced long ago. by Tim Peters · 22 years ago
  23. 8fda7bc save_int(): Fixed two new off-by-1 glitches. by Tim Peters · 22 years ago
  24. e0b9042 Add a comment explaining that struct.pack() beats marshal.dumps(), but by Guido van Rossum · 22 years ago
  25. 5c938d0 Got rid of mdumps; I timed it, and struct.pack("<i", x) is more than by Guido van Rossum · 22 years ago
  26. f558da0 save_tuple(): Minor rewriting, and added a comment about the subtlety by Tim Peters · 22 years ago
  27. 209ad95 load_appends(): replaced .append() loop with an .extend(). by Tim Peters · 22 years ago
  28. c23d18a Comments. by Tim Peters · 22 years ago
  29. 064567e save_dict(): Untangled most of the bin-vs-not-bin logic. Also used by Tim Peters · 22 years ago
  30. 21c18f0 save_list(): Rewrote, to untangle the proto 0 from the proto 1 cases. by Tim Peters · 22 years ago
  31. 22dc6f4 save_list(): removed unused local "d". by Tim Peters · 22 years ago
  32. 58d7846 save_list(): removed unused local "memo". by Tim Peters · 22 years ago
  33. bd1cdb9 save_pers(): Switched the order of cases, to get rid of a "not", and to by Tim Peters · 22 years ago
  34. 518df0d Several routines appeared to inline the guts of memoize(), possibly for by Tim Peters · 22 years ago
  35. b32a831 save(): Fiddled the control flow to put the normal case where it by Tim Peters · 22 years ago
  36. c9d7c4a Added XXX about save()'s special-casing of tuples -- I don't get it. by Tim Peters · 22 years ago
  37. 22987e3 save_bool(): simplified. by Tim Peters · 22 years ago
  38. cbd0a32 Repaired grammar in new comment. by Tim Peters · 22 years ago
  39. b377f8a clear_memo(): Repaired grammar in docstring. by Tim Peters · 22 years ago
  40. e105478 Added one-line comments to the proto 2 opcodes. by Tim Peters · 22 years ago
  41. 784a3f5 Use proper function name in exception messages by Neal Norwitz · 22 years ago
  42. fdb8cfa Removed the new LONG2 opcode: it's extravagant. If LONG1 isn't enough, by Tim Peters · 22 years ago
  43. bdbe741 Documented the 2's-comp business for the new long opcodes. by Tim Peters · 22 years ago
  44. 5eed340 Whitespace normalization. by Tim Peters · 22 years ago
  45. 217e571 decode_long(): Simplified the "is it negative?" test. by Tim Peters · 22 years ago
  46. f29d3d6 Begin the change from 'binary vs. text mode' to 'protocol 0, 1, 2'. by Guido van Rossum · 22 years ago
  47. 5a2d8f5 Begin documenting protocol 2. by Guido van Rossum · 22 years ago
  48. bb38e30 Added some comments. by Tim Peters · 22 years ago
  49. e46b73f memoize(): Reworded the docs to try to disentangle the Pickler's memo by Tim Peters · 22 years ago
  50. bbf63cd Using marshal functions to pack & unpack 1-byte ints is an obscure & by Tim Peters · 22 years ago
  51. 22a449a Added a brief comment to each pickle opcode declaration. by Tim Peters · 22 years ago
  52. a72ded9 Remove a stray quote. by Guido van Rossum · 22 years ago
  53. 1996e23 Repaired comment. by Tim Peters · 22 years ago
  54. d916cf4 stringnl_noescape_pair(): changed the reader to separate the two by Tim Peters · 22 years ago
  55. 8ecfc8e Moving pickletools.py from the sandbox into the std library. I started by Tim Peters · 22 years ago
  56. 40e1ce4 Repaired spelling of "test_iconv_codecs" in various expected-skip lists. by Tim Peters · 22 years ago
  57. 6ffdaab Remove the recently-added get_distutil_options(), and just by Andrew M. Kuchling · 22 years ago
  58. bf51707 Fix comment typos by Walter Dörwald · 22 years ago
  59. ca87aef Patch #670715: Universal Unicode Codec for POSIX iconv. by Martin v. Löwis · 22 years ago
  60. 7e17289 Update for release. Modified Files: INSTALL.txt NEWS.txt idlever.py by Kurt B. Kaiser · 22 years ago
  61. e66675b Whitespace normalization. by Kurt B. Kaiser · 22 years ago
  62. d9db3a6 Update. by Kurt B. Kaiser · 22 years ago
  63. db5ab80 Path to default location for Python output has changed. by Jack Jansen · 22 years ago
  64. 2b3ce3b FSRef and EasyDialogs pathname support was pretty much broken in MacPython-OS9. Fixed. by Jack Jansen · 22 years ago
  65. f4cdb47 amk pointed out that syslog may use UDP or TCP sockets. by Neal Norwitz · 22 years ago
  66. 692d292 Test that True can be copied. by Martin v. Löwis · 22 years ago
  67. 9789aef Patch #670715: Universal Unicode Codec for POSIX iconv. by Martin v. Löwis · 22 years ago
  68. afef4ee Require PyXML 0.8.2. by Martin v. Löwis · 22 years ago
  69. f8de21c Merge with PyXML 1.3: by Martin v. Löwis · 22 years ago
  70. 041411a Merge with PyXML 1.34: Correct typo. Fixes #674700. by Martin v. Löwis · 22 years ago
  71. 995359c Merge with PyXML 1.82: by Martin v. Löwis · 22 years ago
  72. eb9637e M ScriptBinding.py M config-extensions.def M help.txt by Kurt B. Kaiser · 22 years ago
  73. d89c406 SF #642974, logging SysLogHandler proto type wrong by Neal Norwitz · 22 years ago
  74. 8afd757 Patch #636005: Filter unicode into unicode. by Martin v. Löwis · 22 years ago
  75. fd6aaa1 Synchronize with PyXML's 1.33: Import missing modules. by Martin v. Löwis · 22 years ago
  76. aa5af8d Merge PyXML 1.11-1.26: by Martin v. Löwis · 22 years ago
  77. bc28613 M PyShell.py M RemoteDebugger.py M rpc.py by Kurt B. Kaiser · 22 years ago
  78. 7c3c466 Import UserDataHandler from PyXML. by Martin v. Löwis · 22 years ago
  79. b5698fa Import NodeFilter from DOM2 Traversal/Range. by Martin v. Löwis · 22 years ago
  80. 3f1b528 Merge with PyXML 1.28: by Martin v. Löwis · 22 years ago
  81. 9ea6788 Import from PyXML 1.10. by Martin v. Löwis · 22 years ago
  82. 787354c Merge with PyXML 1.80: by Martin v. Löwis · 22 years ago
  83. fc5fec7 Import expatbuilder, minicompat from PyXML. by Martin v. Löwis · 22 years ago
  84. 0a0e6c3 1. Eliminate putrequest(): only used in asynccall(), merge it there. by Kurt B. Kaiser · 22 years ago
  85. 8d81a01 date and datetime comparison: when we don't know how to by Tim Peters · 22 years ago
  86. 3422c99 Raise PicklingError when __reduce__() fails, and by Jeremy Hylton · 22 years ago
  87. 234d9a9 rmtree(): Make implementation agree with documentation (both latex and by Barry Warsaw · 22 years ago
  88. 7fc2cca A very minimal start to a test of the shutil module. by Barry Warsaw · 22 years ago
  89. bcb0e20 Change the mode of scripts in the build/scripts* directory to executable. by Guido van Rossum · 22 years ago
  90. 2a44a8d SF bug 660872: datetimetz constructors behave counterintuitively (2.3a1). by Tim Peters · 22 years ago
  91. 10cadce Reimplemented datetime.now() to be useful. by Tim Peters · 22 years ago
  92. 250684d Use lightweight introspection instead of the inspect module hammer. by Jeremy Hylton · 22 years ago
  93. ba60319 Fix for SF bug 661340: test_httplib fails on the mac. by Jeremy Hylton · 22 years ago
  94. 52dcce2 Bringing the code and test suite into line with doc and NEWS changes by Tim Peters · 22 years ago
  95. 9a7c96a add support for Python's bool type to xmlrpclib - patch # 559288 by Skip Montanaro · 22 years ago
  96. 32417e7 Tweaked time conversion to work in MacPython-OS9. by Jack Jansen · 22 years ago
  97. 70c3dda Convert booleans to integers in IntVar.set. Fixes #671741. by Martin v. Löwis · 22 years ago
  98. 51f3f1b SF patch #667730: More DictMixin by Raymond Hettinger · 22 years ago
  99. 9813445 Make Alt-Key-2 the Zoom Height binding for ClassBrowser and PathBrowser, by Kurt B. Kaiser · 22 years ago
  100. 4cc5ef5 M Bindings.py M PyShell.py M config-keys.def M configHandler.py by Kurt B. Kaiser · 22 years ago