1. 612eb9f Fixed a grab-bag of typos spotted by Rob Hooft. by Greg Ward · 24 years ago
  2. aa5372c Remove unused 'search_dir()' method. Comment tweak. by Greg Ward · 24 years ago
  3. 7499847 Fix to call 'library_filename()' instead of the non-existent by Greg Ward · 24 years ago
  4. 53c1bc3 Typo fix from David Ascher. by Greg Ward · 24 years ago
  5. 4f570b9 Patch #100873 - Use registry to find proxies for urllib on Win32 by Mark Hammond · 24 years ago
  6. fdee0f0 added test case for fixed duplicate arguments bug in Python/compile.c by Peter Schneider-Kamp · 24 years ago
  7. 9f2550f makedirs(), removedirs(): If the tail of the path is empty, do a second by Fred Drake · 24 years ago
  8. 0365180 a couple of nits from Patch #100933 by Jeremy Hylton · 24 years ago
  9. c1b4624 Made an error message slightly more useful if select() returns something goofy by Andrew M. Kuchling · 24 years ago
  10. 82c330e -- updated to include known problems in SRE 0.9.6 (cf. test/output/test_sre) by Fredrik Lundh · 24 years ago
  11. 1790dd4 Restore TestSkipped exception; appears to have disappeared in last checkin. by Fred Drake · 24 years ago
  12. 8a3ebf8 -- SRE 0.9.6 sync. this includes: by Fredrik Lundh · 24 years ago
  13. 623511b Added a few docstrings by Paul Prescod · 24 years ago
  14. 863d8b8 Added docstrings by Paul Prescod · 24 years ago
  15. ff4df6d Small fixes by Petru Paler (patch #100946) checked in with esr's approval. by Thomas Wouters · 24 years ago
  16. e9e5dcd restructured a bit and added some more content... by Skip Montanaro · 24 years ago
  17. 4d06923 make TestFailed a class exception by Skip Montanaro · 24 years ago
  18. 018dfae added rewritten normpath from Moshe Zadka that does the right thing with by Skip Montanaro · 24 years ago
  19. baf2663 Enable extra testing now that os.isatty() is in. (Also tests os.isatty ;P) by Thomas Wouters · 24 years ago
  20. dd6eefb no changes other than indentation level (now 4) and comment reflow. by Greg Stein · 24 years ago
  21. 1d3dd74 * split on / or \ * case insensitive comparison by Skip Montanaro · 24 years ago
  22. 802bc5d damn! cut-n-paste from ntpath forgot the "import re" by Skip Montanaro · 24 years ago
  23. 6222c05 * split on / or \ * case insensitive by Skip Montanaro · 24 years ago
  24. d615918 At GVR's request. by Paul Prescod · 24 years ago
  25. 9eab789 Online help facility for the Python interprter and other interactive by Paul Prescod · 24 years ago
  26. a924bb1 split and join on "/" in commonprefix by Skip Montanaro · 24 years ago
  27. 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 24 years ago
  28. c533e4a Bugfix by Rob W. W. Hooft, from his spelling fixes patch. This one is a by Thomas Wouters · 24 years ago
  29. 3fded4b -- fixed the comment, too by Fredrik Lundh · 24 years ago
  30. efd7b00 -- note to self: wait until 'cvs commit' has finished before by Fredrik Lundh · 24 years ago
  31. 47ac126 -- changed default encoding to "ascii". you can still change by Fredrik Lundh · 24 years ago
  32. 5ff2ac2 Break a cycle created in the saboteur() function. by Vladimir Marangozov · 24 years ago
  33. 649685a ConfigParser enhancements to edit existing configs, part 2 by Eric S. Raymond · 24 years ago
  34. 23adc9f Typo fix from Bastian Kleineidam by Andrew M. Kuchling · 24 years ago
  35. d57f5cf Break the cycles after testing cmp() on cyclic objects. by Vladimir Marangozov · 24 years ago
  36. 5e70cfe Apply Greg Kochanski's fix for open/265. by Eric S. Raymond · 24 years ago
  37. dfbd4c7 Fix bug open/243 reported by Dimitri Papadopoulos by Eric S. Raymond · 24 years ago
  38. 4d5d5bf forgot to change copy.copy(m) to m[:] by Skip Montanaro · 24 years ago
  39. 97bc98a fixed semantics of commonprefix to work by path elements instead of characters. by Skip Montanaro · 24 years ago
  40. 42bb8b3 apply patch #100868 from Moshe Zadka: by Greg Stein · 24 years ago
  41. 38f7441 Remove extra argument to method call by Andrew M. Kuchling · 24 years ago
  42. 56509a3 new test for posixpath module by Skip Montanaro · 24 years ago
  43. e809b00 new test file for posixpath module by Skip Montanaro · 24 years ago
  44. 88887aa small updates to string_join: by Jeremy Hylton · 24 years ago
  45. 85f3639 Create two new exceptions: IndentationError and TabError. These are by Fred Drake · 24 years ago
  46. fff9e20 fix bug #42 reported by Andrew Dalke by Jeremy Hylton · 24 years ago
  47. 5f1b270 Bug fix: ? and ! were not full aliases for `help' and `shell' as implied in by Eric S. Raymond · 24 years ago
  48. 7a11671 fixed inconsistent use of tab and spaces by Peter Schneider-Kamp · 24 years ago
  49. d3cf692 Add test of resize() method of mmap objects by Andrew M. Kuchling · 24 years ago
  50. e0d0090 Docstring changes. by Andrew M. Kuchling · 24 years ago
  51. 20f41b6 add more tests of string.join variants to run_method_tests by Jeremy Hylton · 24 years ago
  52. 663809e -- removed get_default compatibility kludge by Fredrik Lundh · 24 years ago
  53. 417c489 Give ConfigParser the capability to set as well as read options, and to write by Eric S. Raymond · 24 years ago
  54. f82b04e factor out test definitions to string_tests module by Jeremy Hylton · 24 years ago
  55. fd54757 add isalpha and isalnum methods by Jeremy Hylton · 24 years ago
  56. 1bbddd0 Added the line 'Testing UTF-16 code point order comparisons... done." by Guido van Rossum · 24 years ago
  57. fb8849c remove prints of file objects from _test by Jeremy Hylton · 24 years ago
  58. a5ae490 expect message "no regression test case for method 'encode' by Jeremy Hylton · 24 years ago
  59. a48dbde Patch from Joe Eaton <jeaton@hostway.net> (SF#100741) to fix following problem: by Andrew M. Kuchling · 24 years ago
  60. f985064 Better error handling of bad entity references. Before when an & in by Sjoerd Mullender · 24 years ago
  61. 9ac81f6 - changed the nt.popen2 return values back to by Fredrik Lundh · 24 years ago
  62. 0466132 - repaired locale.py for non-windows platforms. the try/except by Fredrik Lundh · 24 years ago
  63. a1ae884 Use TQSQ (triple quoted single quote) module docstring for better by Barry Warsaw · 24 years ago
  64. bb7eeff - added popen.popen2/popen3/popen4 support for windows. by Fredrik Lundh · 24 years ago
  65. 6c86b99 - merged setlocale and set_locale. the internal setlocale by Fredrik Lundh · 24 years ago
  66. c70b448 New module to control Web browsers; see the documentation for more information. by Fred Drake · 24 years ago
  67. dbbf76b Make tabnanny happy. mailbox.py: Convert to 4-space indents. by Fred Drake · 24 years ago
  68. 74b2677 delete bogus file by Guido van Rossum · 24 years ago
  69. 480fa73 Deleted bogus file. by Guido van Rossum · 24 years ago
  70. 2ea17fa fix inconsistent use of tabs and spaces convert semicolons to newlines by Jeremy Hylton · 24 years ago
  71. 04f39aa fix inconsistent use of tabs and spaces by Jeremy Hylton · 24 years ago
  72. 65d6edb fix inconsistent use of tabs and spaces by Jeremy Hylton · 24 years ago
  73. d6d06ad Tests for new surrogate support in the UTF-8 codec. By Bill Tutt. by Marc-André Lemburg · 24 years ago
  74. b6d78fcd Tests for new instance support in unicode(). by Marc-André Lemburg · 24 years ago
  75. 0a3f797 Change whitespace in two places to silence tabnanny. by Guido van Rossum · 24 years ago
  76. f9059eb fixed indentation in several places by Skip Montanaro · 24 years ago
  77. 26a7983 fix indentation in one docstring by Skip Montanaro · 24 years ago
  78. a2dccfb fix indentation in three docstrings by Skip Montanaro · 24 years ago
  79. 2855290 maintenance release: by Fredrik Lundh · 24 years ago
  80. 9d46741 Added tests for the new .isalpha() and .isalnum() methods. by Marc-André Lemburg · 24 years ago
  81. fd9f168 Fixed so the ZIP file (which is bundled into an executable) goes in the by Greg Ward · 24 years ago
  82. c4eb84a Added --dist-dir option to control where output archive(s) go. by Greg Ward · 24 years ago
  83. 040dc0b Added the --dist-dir option that the "bdist_*" will use to control where by Greg Ward · 24 years ago
  84. c061410 Added the --dist-dir option to control where the archive(s) are put; by Greg Ward · 24 years ago
  85. 5baaf66 2 fixes plus one extension: by Sjoerd Mullender · 24 years ago
  86. 6c4753f Used original SAX handling form. by Paul Prescod · 24 years ago
  87. 99b84bd Removed some tabs. by Paul Prescod · 24 years ago
  88. 72b82ba - fixed grouping error bug by Fredrik Lundh · 24 years ago
  89. 6f01398 - added lookbehind support (?<=pattern), (?<!pattern). by Fredrik Lundh · 24 years ago
  90. 17647f5 Compute the name of the test file so that it can be found both when this by Fred Drake · 24 years ago
  91. 0ea1fc8 Fix bug #379, reported by Phillip Porch <root@theproch.com>: by Fred Drake · 24 years ago
  92. 52dc76c Eric S. Raymond <esr@thyrsus.com>: by Fred Drake · 24 years ago
  93. 2b0d98b cmpfiles(): Added shallow and use_statcache parameters, with same meanings by Fred Drake · 24 years ago
  94. 046d272 Martin von Löwis <martin@loewis.home.cs.tu-berlin.de>: by Fred Drake · 24 years ago
  95. 019bcb5 - changed sre.Scanner to use lastindex instead of index. by Fredrik Lundh · 24 years ago
  96. c230173 - experimental: added two new attributes to the match object: by Fredrik Lundh · 24 years ago
  97. 7cafe4d - actually enabled charset anchors in the engine (still not by Fredrik Lundh · 24 years ago
  98. b19948b Typo (mine): Garsholm --> Garshol Noted by Rob Hooft <rob@hooft.net>. by Fred Drake · 24 years ago
  99. 3562f11 -- use charset bitmaps where appropriate. this gives a 5-10% by Fredrik Lundh · 24 years ago
  100. c13222c - fixed "{ in any other context" bug by Fredrik Lundh · 24 years ago