1. b6784dc Interpret three slashes in file: URL as local file (for Netscape on by Guido van Rossum · 27 years ago
  2. 558be28 Make sure the objects returned by __getinitargs__() are kept alive (in by Guido van Rossum · 27 years ago
  3. a412220 Change default verbosity so that there are only three levels left: -q, by Guido van Rossum · 27 years ago
  4. e703842 Tweaks to cope with strftime returning 0 without error for %Z by Guido van Rossum · 27 years ago
  5. f07eaea Forgot to check in the fixed output for print by Guido van Rossum · 27 years ago
  6. 9918e0c Add missing comma to make a tuple of (tagOrId). by Guido van Rossum · 27 years ago
  7. ce32096 Oops. Of course, print b should also be print `b`. :-( by Guido van Rossum · 27 years ago
  8. c95a6c1 Use imp.find_module() as the most certain way to find the test data. by Guido van Rossum · 27 years ago
  9. 57fa217 generated by regrtest.py -g by Jeremy Hylton · 27 years ago
  10. 6eb4b6a test the zlib module only produce output if somethign goes wrong by Jeremy Hylton · 27 years ago
  11. cf00505 Added tests for \b, \B (AMK). by Guido van Rossum · 27 years ago
  12. 827ea7c Last minut changes for \B, \S (?). AMK. by Guido van Rossum · 27 years ago
  13. ff712aa The usual. by Guido van Rossum · 27 years ago
  14. 2b41fdc Moved some non-standard format characters out of the standard list. by Guido van Rossum · 27 years ago
  15. c4d6c4d OK, reop is safe again. by Guido van Rossum · 27 years ago
  16. 5526e39 set LOOPS to 10000 by Guido van Rossum · 27 years ago
  17. c4c2641 Print `a` so encrypted text is shown in ascii, not binary. by Guido van Rossum · 27 years ago
  18. e838701 Don't call sys.exit() all over the place -- simply return the exit by Guido van Rossum · 27 years ago
  19. 257c772 Comment out use of reop.expand_escape and reop._expand until their by Guido van Rossum · 27 years ago
  20. 1530c87 Fred Lundh's latest versions. by Guido van Rossum · 27 years ago
  21. f53c86c Add dummies for create/delete filehandles, just so that vanilla Grail by Guido van Rossum · 27 years ago
  22. 88bb808 Fixed (and documented, see Doc/libmimify.tex) mime_decode_header() and by Guido van Rossum · 27 years ago
  23. 95e8053 1.5a3 prerelease 1 from AMK by Guido van Rossum · 27 years ago
  24. 6dc61b1 Add try-finally to close the file after loading it in by Guido van Rossum · 27 years ago
  25. 6af4abd Various changes by AMK, e.g. remove \e, \cX, add \v by Guido van Rossum · 27 years ago
  26. f55afae New dialog from Fred Lundh by Guido van Rossum · 27 years ago
  27. 9d9af2c Fixes for the Mac. (Jack) by Guido van Rossum · 27 years ago
  28. a5e9fb6 Changes suggested by Jim fulton: by Guido van Rossum · 27 years ago
  29. ca54982 Added TemporaryFile and wrapper class by Jim Fulton. by Guido van Rossum · 27 years ago
  30. d510b72 Allow paths without drive specifier (Jack). by Guido van Rossum · 27 years ago
  31. e2ad88c Rewrite normcase() using string.translate... by Guido van Rossum · 27 years ago
  32. efa6837 Treat all HTTP/1.* versions the same. by Guido van Rossum · 27 years ago
  33. 2567dd6 Two changes: by Guido van Rossum · 27 years ago
  34. 0357d02 Rewrite using class, to make waiting for processes possible; by Guido van Rossum · 27 years ago
  35. 570278b Add test for function comparisons by Guido van Rossum · 27 years ago
  36. d6615ab Get READABLE c.s. from _tkinter instead of conditional definition. by Guido van Rossum · 27 years ago
  37. 7995ed2 The reload(sys) test no longer works due to changes in the import semantics. by Guido van Rossum · 27 years ago
  38. 74d25e7 Mention decode_base64 in example. by Guido van Rossum · 27 years ago
  39. 9a876a4 Tweaks by Lars Wirzenius to parse some more forms of illegal dates: by Guido van Rossum · 27 years ago
  40. 4e5cbcf Added createmessage() -- Lars Wirzenius. by Guido van Rossum · 27 years ago
  41. 2e2525f Patch by Lars Wirzenius to allow f.readline(length). by Guido van Rossum · 27 years ago
  42. ed57d76 Regenerated; __assert__ becomes assert. by Guido van Rossum · 27 years ago
  43. 68de379 Add the option to pass an open file object to GzipFile. This obviates by Guido van Rossum · 27 years ago
  44. 64c6620 Add optional 'quote' flag argument to escape(); if true, translate '"' by Guido van Rossum · 27 years ago
  45. 1e8c8a2 New dialog routines (Fred Lundh) by Guido van Rossum · 27 years ago
  46. 65c78e1 Use dictionary's update() method in _cnfmerge(). by Guido van Rossum · 27 years ago
  47. c864ad6 Nit: round delays to 0.1 second. by Guido van Rossum · 27 years ago
  48. e0ffabe Slight mods to make the module conform to the documentation. by Fred Drake · 27 years ago
  49. 1557a73 Checking in new module code.py -- utilities dealing with code objects. by Guido van Rossum · 27 years ago
  50. f357d3e This module is now completely obsolete. by Guido van Rossum · 27 years ago
  51. c444865 No longer need to use codehack -- use co.co_firstlineno instead. by Guido van Rossum · 27 years ago
  52. 2deb73a Use sys.exc_info() instead of sys.exc_{type,value,traceback}. by Guido van Rossum · 27 years ago
  53. 4994657 Some new tests by Jeffrey by Guido van Rossum · 27 years ago
  54. 71fa97c Jeffrey's latest -- reorder my chages somewhat, by Guido van Rossum · 27 years ago
  55. 9e18ec7 Correctly implement sub, subn, and split. Also correct and augment by Guido van Rossum · 27 years ago
  56. a4f1a78 Jeffrey's next installment by Guido van Rossum · 27 years ago
  57. 32d6f3c Corresponding output. by Guido van Rossum · 27 years ago
  58. 06c0ec9 Several additions from Jeffrey. by Guido van Rossum · 27 years ago
  59. 23b2257 Added tests for sub, subn, and split. by Guido van Rossum · 27 years ago
  60. c3fb88b Fix xover implementation according to Fred Lundh. by Guido van Rossum · 27 years ago
  61. a0e4c1b Jeffrey's latest -- seems to solve most problems! by Guido van Rossum · 27 years ago
  62. 75fce30 Add flush() method to fake file. by Guido van Rossum · 27 years ago
  63. db2b70c Fix bug found by kjpylint; change doc string to avoid "(" in column 1. by Guido van Rossum · 27 years ago
  64. 9e48b27 Catch all exceptions in test modules. by Guido van Rossum · 27 years ago
  65. 65cd989 Added output from new tests. by Guido van Rossum · 27 years ago
  66. 9ddd9da Fixed a syntax error caused by a bad line in the Perl source. by Guido van Rossum · 27 years ago
  67. 26d80e6 Correct inf. while loop. by Guido van Rossum · 27 years ago
  68. e8b8131 Merged Jeffrey's changes in. by Guido van Rossum · 27 years ago
  69. 16bd0ff Merged my changes in, and added all converted Perl tests. by Guido van Rossum · 27 years ago
  70. 337c6d4 Jeffrey's version by Guido van Rossum · 27 years ago
  71. 9f845ec More changes by Jeffrey. by Guido van Rossum · 27 years ago
  72. 23b8d4c Tweak re_tests and test_re to differentiate between by Guido van Rossum · 27 years ago
  73. 847ed4a More tweaks; re.py is nearly there... by Guido van Rossum · 27 years ago
  74. 5310975 Fix group() -- should be tuple even when re has exactly one group. by Guido van Rossum · 27 years ago
  75. 09bcfd6 Jeffrey's latest -- almost there. by Guido van Rossum · 27 years ago
  76. 04a1d74 Jeffrey's newest by Guido van Rossum · 27 years ago
  77. 70f107f Three fewer incorrect failures by Guido van Rossum · 27 years ago
  78. 7449540 After some discussion with Jeremy and Fred, decided to limit the by Guido van Rossum · 27 years ago
  79. 1d8b758 Removed the traceback output in non-verbose mode by Guido van Rossum · 27 years ago
  80. 5d6de25 New from Jeffrey; small nits. by Guido van Rossum · 27 years ago
  81. 8a9a4a2 Jeffrey's latest. by Guido van Rossum · 27 years ago
  82. 035aae0 Some small nits. by Guido van Rossum · 27 years ago
  83. 185147f Test urlparse cache with try/except instead of has_key. by Guido van Rossum · 27 years ago
  84. 7ffbd2f This is pretty pathetic and full of errors, by Guido van Rossum · 27 years ago
  85. 8e0ce30 test suite for re.py by Guido van Rossum · 27 years ago
  86. 105bd98 Added /usr/bin/env python and made executable. by Guido van Rossum · 27 years ago
  87. e3cd151 Use the modules base64, quopri, and uu, instead of external programs by Guido van Rossum · 27 years ago
  88. 9e1ee97 Support for conditional breakpoints (Jim Fulton, with some changes). by Guido van Rossum · 27 years ago
  89. 6683617 Normalize whitespace. by Guido van Rossum · 27 years ago
  90. ff02e1d Support for conditional breakpoints (Jim Fulton). by Guido van Rossum · 27 years ago
  91. 65c28b7 Removed debug print in set construction. Changed some '==' to 'in' (Tim Peters). by Guido van Rossum · 27 years ago
  92. 63e1819 New version from Jeffrey after I complained about some glaring bugs. by Guido van Rossum · 27 years ago
  93. 5ca1b71 Straight from Jeffrey Ollie's web page. by Guido van Rossum · 27 years ago
  94. d247812 Two improvements suggested by Tim Peters: speed up random() since we by Guido van Rossum · 27 years ago
  95. 475d51d Wrapped up the ~/.netrc support. This is basically just the changes Guido & by Fred Drake · 28 years ago
  96. bcdb940 Added docstrings by Sue Williams, re-indented to 4 spaces / level. by Fred Drake · 28 years ago
  97. d9c6f4f Allow oct() result for 64-bit machines. by Guido van Rossum · 28 years ago
  98. 914c938 Use cPickle and cStringIO when available. by Guido van Rossum · 28 years ago
  99. f668d17 Clear the ftp cache when it contains more than 10 entries. by Guido van Rossum · 28 years ago
  100. 2966b32 Catch *all* errors that ftplib can raise (ftplib.all_errors) rather by Guido van Rossum · 28 years ago