1. c5d2d51 Apply the same change to classes without an __getinitargs__() method by Guido van Rossum · 27 years ago
  2. 61de0ac Reindented according to new standard, without tabs. by Guido van Rossum · 27 years ago
  3. 63cf396 ospath.py has been obsolete for long enough. by Guido van Rossum · 27 years ago
  4. e467be6 When instantiating a class with no arguments and where the class does by Guido van Rossum · 27 years ago
  5. 346f7af Added doc strings and reindented according to new standard, without tabs. by Guido van Rossum · 27 years ago
  6. 15e22e1 Added doc strings and reindented according to new standard, without tabs. by Guido van Rossum · 27 years ago
  7. 7f97328 Fix the exclusion of "config" in the methods copied from Pack to also by Guido van Rossum · 27 years ago
  8. e612be5 Patch my Marc Lemburg to fix urljoin("/a", "..") and urljoin("/a", "..#1"). by Guido van Rossum · 27 years ago
  9. 3fa440e Refinement of home for NT, courtesy Jeff Bauer. by Guido van Rossum · 27 years ago
  10. ab76af3 Provide default for blocksize on retrbinary (Skip Montanaro). by Guido van Rossum · 27 years ago
  11. 98ee50b More generated files for netbsd 1.x, by Anders Andersen. by Guido van Rossum · 27 years ago
  12. 91221c2 Support for netbsd1 and freebsd3, after suggestions by Anders Andersen by Guido van Rossum · 27 years ago
  13. c0f29c2 When a port is specified in an ftp:// URL, must convert it to a number! by Guido van Rossum · 27 years ago
  14. 80f8be8 Support for the "event" command, new in Tk 4.2. By Case Roole. by Guido van Rossum · 27 years ago
  15. 11fbef5 Sjoerd sez: global substitute \240 with \177. by Guido van Rossum · 27 years ago
  16. 376467a Added stropts.h to the list of files automatically regenerated. by Guido van Rossum · 27 years ago
  17. 5284589 Generated from Solaris 2.6's /usr/include/sys/stropts.h via by Barry Warsaw · 27 years ago
  18. 893a8cb *** empty log message *** by Guido van Rossum · 27 years ago
  19. cf4559a Added Pareto and Weibull distributions, courtesy Jeremy Hylton. by Guido van Rossum · 27 years ago
  20. c99a239 Added strop.split tests when sep is None. by Barry Warsaw · 27 years ago
  21. 06ba34c In string.split(), honor maxsplit (if > 0). by Guido van Rossum · 27 years ago
  22. 58a88b3 _Environ(): Added __getinitargs__() method so os.environ.copy() works, by Barry Warsaw · 27 years ago
  23. 9181190 Added tests of strop.replace() by Barry Warsaw · 27 years ago
  24. 0b23348 The usual by Guido van Rossum · 27 years ago
  25. e2d4dd1 Use fuzzy comparison from test_support to compare outcome of by Guido van Rossum · 27 years ago
  26. 8e9ebfd os2 patch by Jeff Rush by Guido van Rossum · 27 years ago
  27. c0b9319 bind_class should return a value by Guido van Rossum · 27 years ago
  28. be7c45e New address parser by Ben Escoto replaces Sjoerd Mullender's parseaddr() by Guido van Rossum · 27 years ago
  29. e6c128f Use fstat if we can; write MAGIC into file last. by Guido van Rossum · 27 years ago
  30. 7d5b99d A new standard module, as discussed on comp.lang.python, to simplify by Guido van Rossum · 27 years ago
  31. 3d96d52 (Queue.Empty): When class based exceptions are in force, derive this by Barry Warsaw · 27 years ago
  32. bd1169a Add Martin von Loewis as the author of this module. by Guido van Rossum · 27 years ago
  33. eef1d4e User-level locale module. A wrapper around _locale which adds by Guido van Rossum · 27 years ago
  34. 8360005 Assert that the proxies object passed in to the URLopener constructor by Guido van Rossum · 27 years ago
  35. 421c224 Added docstrings (contributed by Martin von Loewis). by Guido van Rossum · 27 years ago
  36. 5d68e8e Fixed case sensitivity of attributes (they are case *sensitive*). by Guido van Rossum · 27 years ago
  37. a219efa Sjoerd Mullender's xml parser (based on sgmllib, somewhat). by Guido van Rossum · 27 years ago
  38. 368e06b Some restructuring. by Guido van Rossum · 27 years ago
  39. c1189eb Separate out a function pystones(loops=LOOPS) which runs the benchmark by Guido van Rossum · 27 years ago
  40. f849291 Add __init__.py to test package. by Guido van Rossum · 27 years ago
  41. bfa9f13 islink() returns false, but there is no constant false! Return 0 instead. by Guido van Rossum · 27 years ago
  42. 19f4456 Use ``0'' instead of ``None'' to reset the underlying object in close by Guido van Rossum · 27 years ago
  43. e8d1139 Add empty __init__.py files to the test packages so the new policy by Guido van Rossum · 27 years ago
  44. 613418a New version from Sjoerd, small bugfix + optimizations. by Guido van Rossum · 27 years ago
  45. 0874f7f Tests for tokenize.py (Ka-Ping Yee) by Guido van Rossum · 27 years ago
  46. fefc922 New, fixed version with proper r"..." and R"..." support from Ka-Ping. by Guido van Rossum · 27 years ago
  47. 3b63177 Redone (by Ka-Ping) using the new re module, and adding recognition by Guido van Rossum · 27 years ago
  48. 036309b This should hopefully finally clean up the remaining __del__ related by Guido van Rossum · 27 years ago
  49. af8d2bf Bugfix in match() -- the number of registers shouldn't be divided by two! by Guido van Rossum · 27 years ago
  50. e6eef4b Use __dict__.update(state) instead of for loop over state.items() and by Guido van Rossum · 27 years ago
  51. 31626bc re -> regex conversions by Sjoerd. by Guido van Rossum · 27 years ago
  52. f81e5b9 New module -- converts regex regular expressions to re style. by Guido van Rossum · 27 years ago
  53. 1fef181 Although it's hard to be sure, I *think* this is a working conversion by Guido van Rossum · 27 years ago
  54. 57a68e0 Remove redundant import regsub. by Guido van Rossum · 27 years ago
  55. 9694fca Convert all remaining *simple* cases of regex usage to re usage. by Guido van Rossum · 27 years ago
  56. 426916e Add pcre to the list of safe modules. by Guido van Rossum · 27 years ago
  57. f7a8b45 Remove outdated comments. by Guido van Rossum · 27 years ago
  58. 12f86ad Removed some unneeded imports, moved others around. by Guido van Rossum · 27 years ago
  59. a8832b4 Removed unneeded imports of regex and regsub. by Guido van Rossum · 27 years ago
  60. acfb82a Use re instead of regex. Also remove bogus return statement from __init__(). by Guido van Rossum · 27 years ago
  61. 8566e47 Added pgrep() function, which is like grep/egrep/emgrep but uses Perl by Guido van Rossum · 27 years ago
  62. b491442 Deleted this long-obsolete module by Guido van Rossum · 27 years ago
  63. 2498620 Added "new" symbol defns for RE_ANSI_HEX and RE_NO_GNU_EXTENSIONS -- by Guido van Rossum · 27 years ago
  64. 4e8ef5f Catch KeyboardInterrupt separately and propagate it, instead of by Guido van Rossum · 27 years ago
  65. 1510565 Add optional 4th argument to count(), matching find() etc. by Guido van Rossum · 27 years ago
  66. dd65975 Patch by Charles G. Waldman to add optional user and password by Guido van Rossum · 27 years ago
  67. 7eecc24 Remove .pyo files like .pyc files. by Guido van Rossum · 27 years ago
  68. fb5cef1 Added separate tests for {}.get(). by Guido van Rossum · 27 years ago
  69. 9b887c7 Added tests of dict.get() by Barry Warsaw · 27 years ago
  70. 654451d splitpasswd(): The parameter is named "user", not "host". by Fred Drake · 27 years ago
  71. 2861f4e Open files in binary mode (Jack) by Guido van Rossum · 27 years ago
  72. cbf3dd5 Use better timer on the mac Open files in binary mode (Jack) by Guido van Rossum · 27 years ago
  73. 45ac47c Allow open file as parameter (must be seekable) (Jack) by Guido van Rossum · 27 years ago
  74. 9ec2ed4 Change test for re.sub() involving g<...> to use a multi-character by Guido van Rossum · 27 years ago
  75. 5bc5b14 Checking in AMK's latest installement. by Guido van Rossum · 27 years ago
  76. d2c0ec7 Use `...` around binary strings. by Guido van Rossum · 27 years ago
  77. 53ad776 Remove this pathetic little module! by Fred Drake · 27 years ago
  78. c6e8fd6 Temporary fix to valid_identifier(). by Guido van Rossum · 27 years ago
  79. 2f3941d Return the error code from most commands, rather than swallowing it. by Guido van Rossum · 27 years ago
  80. ae590db Fix join to support multiple arguments. by Guido van Rossum · 27 years ago
  81. abfdd70 Add XXX note about wanting support for copy_reg.py... by Guido van Rossum · 27 years ago
  82. 90981e0 Add Jeff Epler's interact() function. Note that it is broken. by Guido van Rossum · 27 years ago
  83. d5484fb Add optional arguments lo and hi to insort() and bisect(), to support by Guido van Rossum · 27 years ago
  84. e3dbc7e Reduced number of temporary names used at module scope. Use underscores in by Fred Drake · 27 years ago
  85. dc1a072 Reduced number of temporary names used at module scope. Use underscores in by Fred Drake · 27 years ago
  86. 923c4ee Don't do weird things with the "import parser"; just do it. Sheesh... by Fred Drake · 27 years ago
  87. a11cccc The usual (and some new modules). by Guido van Rossum · 27 years ago
  88. fc3e61c UserDict.get(): New method to mirror built-in dictionaries' get() method. by Barry Warsaw · 27 years ago
  89. 596db31 Move the __getitem__() definition from StandardException to Exception. by Fred Drake · 27 years ago
  90. bf9d353 New "re" regular expression support. by Guido van Rossum · 27 years ago
  91. 6af6d35 Turns out whatsound.py and sndhdr.py were identical modules. by Guido van Rossum · 27 years ago
  92. f1b0009 Fix path search for test data file so it works under more circumstances. by Guido van Rossum · 27 years ago
  93. ae631f7 There was actually a test that ensured that raising an exception A by Guido van Rossum · 27 years ago
  94. a008fa5 Fixed test for socket.error to work when it's a class exception. by Guido van Rossum · 27 years ago
  95. ac8a9f3 Handy utility to guess MIME type from extension. by Guido van Rossum · 27 years ago
  96. 83bd9a9 Move Widget.config() c.s. to Misc class, so the Tk class also inherits them. by Guido van Rossum · 27 years ago
  97. 332e144 Use sys.exc_info() where needed. Use "re" module, making it threadsafe. by Guido van Rossum · 27 years ago
  98. f15d159 Use sys.exc_info() where needed. by Guido van Rossum · 27 years ago
  99. c90ad21 No longer need to be very careful with saving the exception state by Guido van Rossum · 27 years ago
  100. a3beb63 Removing emacs.py, which is obsolete. by Guido van Rossum · 27 years ago