1. fc3fc33 Checking in patch #103478 -- makes popen2 and fork1 tested on BeOS. by Moshe Zadka · 24 years ago
  2. 251ef96 Fix test for free ref to global. This test should have caught a by Jeremy Hylton · 24 years ago
  3. ac25a38 add test for illegal imports by Jeremy Hylton · 24 years ago
  4. bf222c9 Fixed posixpath.normpath() to respect two leading slashes, but by Marc-André Lemburg · 24 years ago
  5. fde66e1 Fixed .capitalize() method of Unicode objects to work like the by Marc-André Lemburg · 24 years ago
  6. 497671e The one thing I love more then writing code is deleting code. by Moshe Zadka · 24 years ago
  7. 080c997 added several more urlencode test cases - part of patch 103391 by Skip Montanaro · 24 years ago
  8. 14f1ad4 allow first param urlencode to be a sequence of two-element tuples - in this by Skip Montanaro · 24 years ago
  9. b4cd5c1 Remove single "." components from pathnames, and return os.curdir if by Jack Jansen · 24 years ago
  10. a221b2a Data pathnames were not converted from URL-style to local style. Fixed. by Jack Jansen · 24 years ago
  11. 0149e84 SF bug #130306: statcache.py full of thread problems. by Tim Peters · 24 years ago
  12. 64d42c5 Added tests for new signature of new.instance(). by Fred Drake · 24 years ago
  13. 2bcb323 Except HierarchyRequestErr instead of TypeError. by Martin v. Löwis · 24 years ago
  14. 70d39a6 Re-indent. by Martin v. Löwis · 24 years ago
  15. 711a5bd Synchronize with PyXML 1.5. by Martin v. Löwis · 24 years ago
  16. 0591725 Synchronize with PyXML 1.10 by Martin v. Löwis · 24 years ago
  17. 52ce0d0 Re-indent. by Martin v. Löwis · 24 years ago
  18. d5fb58f Merge changes of PyXML 1.13: by Martin v. Löwis · 24 years ago
  19. e3fc722 Synchronize with 1.10 of PyXML: Close parser when done. by Martin v. Löwis · 24 years ago
  20. 715c4c4 New comment block to Clarify a subtlety. by Tim Peters · 24 years ago
  21. 04a1a54 Patch #103052: Restore non-cyclic operation of pulldom.PullDOM by Martin v. Löwis · 24 years ago
  22. 49c9942 Added an execution layer to be able to customize per-extension building. by Marc-André Lemburg · 24 years ago
  23. d30e587 unnecessary semicolon by Jeremy Hylton · 24 years ago
  24. 5b48c45 unnecessary semicolon by Jeremy Hylton · 24 years ago
  25. e360d95 The combo of getstate/setstate/jumpahead is very powerful, but needs by Tim Peters · 24 years ago
  26. 85e2e47 SF bug 130030: Claim of bad betavariate algorithm. by Tim Peters · 24 years ago
  27. cd80410 Cosmetic changes after some sleep; no change in semantics. by Tim Peters · 24 years ago
  28. 619eea6 PEP 227 implementation by Jeremy Hylton · 24 years ago
  29. 4588c78 PEP 227 implementation by Jeremy Hylton · 24 years ago
  30. 5e2d076 In subst_vars(), change the name of the argument from str to s to by Jeremy Hylton · 24 years ago
  31. a39414b PEP 227 implementation by Jeremy Hylton · 24 years ago
  32. 92e9f29 add extra tests to verify that co_varnames is being set up properly by Jeremy Hylton · 24 years ago
  33. 03d9014 added a few more __all__ lists by Skip Montanaro · 24 years ago
  34. 438bb94 fail more completely by deleting dbhash from sys.modules if bsddb can't be by Skip Montanaro · 24 years ago
  35. d52269b Fix bugs introduced by rewrite (in particular, time-based initialization by Tim Peters · 24 years ago
  36. d7b5e88 Reworked random.py so that it no longer depends on, and offers all the by Tim Peters · 24 years ago
  37. 42756df Fix the test output, now that escapes in repr() of string and Unicode by Guido van Rossum · 24 years ago
  38. 0fc8b74 Fix the test output, now that escapes in repr() of string and Unicode by Guido van Rossum · 24 years ago
  39. d305f51 New asynchat.py from Sam Rushing: this foregoes using the regex module by Andrew M. Kuchling · 24 years ago
  40. fa004ad Show '\011', '\012', and '\015' as '\t', '\n', '\r' in strings. by Ka-Ping Yee · 24 years ago
  41. 84d14ba There is no more Modules/Makefile, use toplevel Makefile. by Neil Schemenauer · 24 years ago
  42. af6963c Updated version of asyncore.py from Sam Rushing: by Andrew M. Kuchling · 24 years ago
  43. 506f0b1 Part of patch #102409: special cases for Cygwin: by Andrew M. Kuchling · 24 years ago
  44. 1baf829 test___all__ was failing on WIndows because locale.py doesn't really by Tim Peters · 24 years ago
  45. 06d1268 Move uchhash functionality into unicodedata (after the recent by Fredrik Lundh · 24 years ago
  46. 17ab123 a few more modules get __all__ by Skip Montanaro · 24 years ago
  47. f449391 __all__: removed "error", "abort", "readonly", as these are not by Barry Warsaw · 24 years ago
  48. 24f3aca It's "gopherlib" not "gopher". by Barry Warsaw · 24 years ago
  49. cfa4096 Fixed autoraise glitches. by Eric S. Raymond · 24 years ago
  50. 2dd4276 added a few more __all__ lists fixed typo in ihooks docstring by Skip Montanaro · 24 years ago
  51. f79cb2d Expose the autoraise capability. Improve the documentation. by Eric S. Raymond · 24 years ago
  52. f7f1851 Rewrite webbrowser.py to fix various bugs following Ka-Ping Yee's by Eric S. Raymond · 24 years ago
  53. f87d857 Restore alphabetic order. Also try to import rlcompleter and curses, but by Tim Peters · 24 years ago
  54. 578ceee Add simple test of list comprehension that uses a name that isn't by Jeremy Hylton · 24 years ago
  55. d0f5e70 - Use "exec ... in dict" to avoid having to walk on eggshells; locals by Guido van Rossum · 24 years ago
  56. 763cb0a Typo repair. by Tim Peters · 24 years ago
  57. e935816 Reorganize pickle/cPickle testing so the tests pass regardless of the order by Tim Peters · 24 years ago
  58. d74804d The "user" module cannot reasonably be tested. Moved to the end (and by Fred Drake · 24 years ago
  59. 7f9b5e0 OK, changed my mind once more on this. The comparison hierarchy is now by Guido van Rossum · 24 years ago
  60. d9bae8b Numeric-smelling objects now once again compare smaller than by Guido van Rossum · 24 years ago
  61. 31584cb Finn Bock (SF patch #103349): by Guido van Rossum · 24 years ago
  62. f317a18 Finn Bock (SF patch #103345): Avoid outdated exec form in test_class.py. by Guido van Rossum · 24 years ago
  63. 0c94724 Patch #103342: Make shutil.copytree more useful under Jython. by Tim Peters · 24 years ago
  64. d304f44 Patch #103343: Allow the important test_pkg to succeed under Jython. by Tim Peters · 24 years ago
  65. db78687 In format(), consider sign only after grouping. by Martin v. Löwis · 24 years ago
  66. 08dabf0 Patch #103344: Sort dicts from extcall for easier comparison with Jython. by Tim Peters · 24 years ago
  67. dfc538a Whitespace normalization. by Tim Peters · 24 years ago
  68. 384fd10 Bug #128475: mimetools.encode (sometimes) fails when called from a thread. by Tim Peters · 24 years ago
  69. eccd02a more __all__ updates by Skip Montanaro · 24 years ago
  70. e78b92a added some tests for urlencode by Skip Montanaro · 24 years ago
  71. e99d5ea added __all__ lists to a number of Python modules by Skip Montanaro · 24 years ago
  72. c955f89 docstring typo by Skip Montanaro · 24 years ago
  73. 6bd6835 I've been using gdb a lot lately -- I'm missing 'bt' as a command in by Guido van Rossum · 24 years ago
  74. 663f6c2 rewrite of robotparser.py by Bastian Kleineidam. Closes patch 102229. by Skip Montanaro · 24 years ago
  75. a5d23a1 modify urlencode so sequences in the dict are treated as multivalued by Skip Montanaro · 24 years ago
  76. f605606 Better error message if ucnhash cannot be found (obscure attribute by Fredrik Lundh · 24 years ago
  77. 0a5f91f Now that Marc-Andre has retracted unistr(), remove the tests. by Guido van Rossum · 24 years ago
  78. 48eb9cd A hack to augment sys.path with the build/lib.<platform> directory by Guido van Rossum · 24 years ago
  79. a8e14d4 Use a saner test filename, to work on Windows. by Guido van Rossum · 24 years ago
  80. ccc2e3d OK, checking in patch 103329. by Moshe Zadka · 24 years ago
  81. 2e9b396 Add some regression tests of coredump bugs in funcobject.c 2.31. Also by Barry Warsaw · 24 years ago
  82. a1374e4 Change verify() function to raise TestFailed, not AssertionError. by Guido van Rossum · 24 years ago
  83. 10b0418 Bump __version__; add authorship note for the BaseServer patch. by Guido van Rossum · 24 years ago
  84. 989835c Patch #103220 from Jason Tishler: by Andrew M. Kuchling · 24 years ago
  85. 2acb54a improved the ucnhash test a bit by Fredrik Lundh · 24 years ago
  86. ee865c6 added "getcode" and "getname" methods to the ucnhash module (they're by Fredrik Lundh · 24 years ago
  87. 0fdb90c refactored the unicodeobject/ucnhash interface, to hide the by Fredrik Lundh · 24 years ago
  88. cc58363 urllib.py very recently changed to produce uppercase escapes, but no by Tim Peters · 24 years ago
  89. 8880f6d Whitespace normalization. by Tim Peters · 24 years ago
  90. 1a8a53d test_urllib is failing on Windows. I don't know why, but I can at least by Tim Peters · 24 years ago
  91. 983874d Use constructor form of "raise"; normalize <wink> docstrings. by Tim Peters · 24 years ago
  92. d93c0b6 Jeremy's patch #103323: trivial tests of all untested modules. by Tim Peters · 24 years ago
  93. 1a34c87 make the output of _test() suitable for use in the regression test by Jeremy Hylton · 24 years ago
  94. e27a7b8 Anonymous SF bug 129288: "The python 2.0 urllib has %%%x as a format by Guido van Rossum · 24 years ago
  95. e1bb5f9 make error msg more informative when test of exec fails by Jeremy Hylton · 24 years ago
  96. 047e2c9 add test for SyntaxError on def f(a): global a by Jeremy Hylton · 24 years ago
  97. b4ed8c4 add test of bastion and rexec to std regression test suite by Jeremy Hylton · 24 years ago
  98. fc53c13 Checking in a slight variation of Barry's patch 103303. by Guido van Rossum · 24 years ago
  99. 90cb906 SF Patch #102980, by Luke Kenneth Casson Leighton: BaseServer class by Guido van Rossum · 24 years ago
  100. 2312024 Add test that ensures hash() of objects defining __cmp__ or __eq__ but by Guido van Rossum · 24 years ago