1. 9fadfb0 Guido found a brand new race in tempfile on Linux, due to Linux changing by Tim Peters · 24 years ago
  2. ef34274 Moved the test codec definition to a new module and updated the test and by Marc-André Lemburg · 24 years ago
  3. 58c82f0 Assorted xreadlines problems: by Tim Peters · 24 years ago
  4. 07b78a8 Test for xreadline. by Guido van Rossum · 24 years ago
  5. 3a55f95 18 isn't a prime (duh). by Tim Peters · 24 years ago
  6. 86821b2 MS Win32 .readline() speedup, as discussed on Python-Dev. This is a tricky by Tim Peters · 24 years ago
  7. e3fb18c Add more regression tests, including for the import statement variations. by Fred Drake · 24 years ago
  8. 1109db4 This patch adds a new feature to the builtin charmap codec: by Marc-André Lemburg · 24 years ago
  9. a4d18a0 Add test cases based on RFC 1808. So now we actually have a test suite by Fred Drake · 24 years ago
  10. 1a7aab7 When a PyCFunction that takes only positional parameters is called with by Fred Drake · 24 years ago
  11. 0ee7d82 No more RCmp. by Neil Schemenauer · 24 years ago
  12. 623116a Sequence repeat works now for in-place multiply with an integer type by Neil Schemenauer · 24 years ago
  13. aa726ba __rcmp__ no longer gets called on instances. Remove the test for it. by Neil Schemenauer · 24 years ago
  14. 38f0223 Numbers no longer compare smaller than all other types. Fix the only by Neil Schemenauer · 24 years ago
  15. 5ab3661 Actually call the object with an __call__ method, instead of just by Jeremy Hylton · 24 years ago
  16. a866df8 This patch changes the default behaviour of the builtin charmap by Marc-André Lemburg · 24 years ago
  17. e7e694f Use == rather than cmp(). The return value of cmp() is not well defined when by Neil Schemenauer · 24 years ago
  18. 38796d0 Use numbers that can be accurately represented on binary machines. I hope by Neil Schemenauer · 24 years ago
  19. 6d0cee1 Add forgotten import by Andrew M. Kuchling · 24 years ago
  20. fd288c7 Add more tests for compare and coercion in preparation for the coercion by Neil Schemenauer · 24 years ago
  21. ad4a558 Added test case for legal DOM children by Andrew M. Kuchling · 24 years ago
  22. 1a4d77b Christmas present to myself: changed regrtest in two ways: by Tim Peters · 24 years ago
  23. 36cdad1 Fred, THIS NEEDS DOCS! The function docstrings tell the tale. by Tim Peters · 24 years ago
  24. da7bf4e Add test case for SF bug by Tim Peters · 24 years ago
  25. 1e0611b The "context" parameter to the ExternalEntityRefParameter exposes internal by Fred Drake · 24 years ago
  26. 9a1a7dd The regression test for the regex module should not trip the deprecation by Fred Drake · 24 years ago
  27. c867f74 Change expected message for ValueError, fixing bug #126400 by Andrew M. Kuchling · 24 years ago
  28. 70f1288 Use binary mode to open "wave" files. by Guido van Rossum · 24 years ago
  29. 8b26454 Test more split argument combinations: by Guido van Rossum · 24 years ago
  30. 8b74b15 Test some Unicode pickling endcases. by Guido van Rossum · 24 years ago
  31. 99664e4 gdbm.open() no longer accepts garbage in the flags string. Fix the tests. by Neil Schemenauer · 24 years ago
  32. 1703cf6 Before calling traceback.print_exc(), call sys.stdout.flush(). This makes by Fred Drake · 24 years ago
  33. 4d192b3 Add test case for error message raised by bad % format character by Andrew M. Kuchling · 24 years ago
  34. 3277da0 Update the test suite to cover more ground. by Fred Drake · 24 years ago
  35. 132dce2 Update the code to better reflect recommended style: by Fred Drake · 24 years ago
  36. b822c61 Added test for {}.popitem(). by Guido van Rossum · 24 years ago
  37. e1578ce Added tests to avoid regression on bug #125375. by Fred Drake · 24 years ago
  38. 3d5f7e8 Add test cases for ConfigParser.remove_option() behavior. This includes by Fred Drake · 24 years ago
  39. 5725d1e Backing out my changes. Improved version coming soon to a Source Forge near you! by Moshe Zadka · 24 years ago
  40. 1a62750 Added .first{item,value,key}() to dictionaries. by Moshe Zadka · 24 years ago
  41. a3a3a03 Fox for SF bug #123859: %[duxXo] long formats inconsistent. by Tim Peters · 24 years ago
  42. 15ffc71 Slight improvement to Unicode test suite, inspired by patch #102563: by Guido van Rossum · 24 years ago
  43. b7f0cef Update test output. by Fred Drake · 24 years ago
  44. a1bde80 testInsertBefore(): Rewritten to actually test insertBefore() somewhat. by Fred Drake · 24 years ago
  45. cc78e47 Verify that str(a) and repr(a) don't blow up (part of SF patch 102068). by Tim Peters · 24 years ago
  46. b046b76 Added test cases to detect regression on SourceForge bug #121965. by Fred Drake · 24 years ago
  47. fad27ae Added 38,642 missing characters to the Unicode database (first-last by Fredrik Lundh · 24 years ago
  48. 24ec6fb track recent change to test_extcall.py by Jeremy Hylton · 24 years ago
  49. 6b4ec51 Fix for SF bug #117241 by Jeremy Hylton · 24 years ago
  50. ebc37b2 -- properly reset groups in findall (bug #117612) by Fredrik Lundh · 24 years ago
  51. 661ea26 Ka-Ping Yee <ping@lfw.org>: by Fred Drake · 24 years ago
  52. bd6f4fb Insert the current directory to the front of sys.path -- and remove it by Guido van Rossum · 24 years ago
  53. 0702507 Added a test case for the saxutils.prepare_input_source setSystemId bug. by Lars Gustäbel · 24 years ago
  54. cfd3bd8 Updated output. by Lars Gustäbel · 24 years ago
  55. 2fc5294 Added some more tests here and there. by Lars Gustäbel · 24 years ago
  56. 098b55a Make reindent happy, but not in the way it planned! by Fred Drake · 24 years ago
  57. 004d5e6 Make reindent.py happy (convert everything to 4-space indents!). by Fred Drake · 24 years ago
  58. 2e6d25c Use 4-space indents. by Fred Drake · 24 years ago
  59. 2ec80fa Clean up the temporary file when done with it. by Fred Drake · 24 years ago
  60. dce5641 Make sure the temporary file is cleaned up even when we raise TestSkipped. by Fred Drake · 24 years ago
  61. 44b6bd2 Added note saying to use test_support.TESTFN for a temporary filename, by Fred Drake · 24 years ago
  62. 0aaed27 Added test for regression on SourceForge bug #117490. by Fred Drake · 24 years ago
  63. f7ef15d Use test_support.TESTFN as the temporary filename. Fix a minor stylistic nit. by Fred Drake · 24 years ago
  64. 98c8184 Test for math.* exceptional behavior only in verbose mode, so that the by Tim Peters · 24 years ago
  65. 5bad5a4 Updated test suite to latest pulldom changes. by Lars Gustäbel · 24 years ago
  66. 8a00abc Make the regrtest.py -l (findleaks) option considerably less obnoxious. by Neil Schemenauer · 24 years ago
  67. 3b0c600 cosmetic changes only: use standard Python style for whitespace near = and () by Jeremy Hylton · 24 years ago
  68. 22d5895 Added a test for the StringIO write() error I just fixed. by Guido van Rossum · 24 years ago
  69. 2e2a70a Anonymous patch to add Darwin 1.2 to the list of BSDs. by Guido van Rossum · 24 years ago
  70. 0157e7a Added some single tuple/list unpacking for JPython regression testing. by Barry Warsaw · 24 years ago
  71. cb5b5ba A Mystery: I somehow managed to delete the last two lines of my test_math.py by Tim Peters · 24 years ago
  72. 1d12061 Stop raising OverflowError on underflows reported by libm (errno==ERANGE and by Tim Peters · 24 years ago
  73. f27f5ab Added additional test cases for pulldom modifications. by Lars Gustäbel · 24 years ago
  74. cb953d7 Test the exception-raising for error cases in copy_reg. by Fred Drake · 24 years ago
  75. 4bbea05 Jack Jansen reported that the regression test failed on the Mac where by Guido van Rossum · 24 years ago
  76. 7e3e1c1 Added test cases for extended printing to an instance. This picked up by Barry Warsaw · 24 years ago
  77. 16b198e wave test output by Guido van Rossum · 24 years ago
  78. a00afc1 Simple test suite for wave.py by Jean-Claude Rimbault (with some by Guido van Rossum · 24 years ago
  79. ebe7302 Move the test for confirmation that all nodes have been freed into the by Fred Drake · 24 years ago
  80. e9f922f Adapt test output to changed error message. by Guido van Rossum · 24 years ago
  81. ce6292e Correct output. by Guido van Rossum · 24 years ago
  82. 923ebe4 It seems our sound cards can't play mulaw data. Use native-format by Guido van Rossum · 24 years ago
  83. 13ac992 Fixed too ambitious "nothing to repeat" check. Closes bug #114033. by Fredrik Lundh · 24 years ago
  84. 5c0b43d The test is good, but Jim forgot to check in the updated output. by Fred Drake · 24 years ago
  85. 025468d SRE didn't handle character category followed by hyphen inside a by Fredrik Lundh · 24 years ago
  86. b96d802 Updated test with a case which checks for the bug reported in by Marc-André Lemburg · 24 years ago
  87. 0a84a33 Add .toxml test case, as proposed by Alex Martelli in bug report #116244. by Martin v. Löwis · 24 years ago
  88. 80670bc Add a test case for reporting the file name, and for reporting an error by Martin v. Löwis · 24 years ago
  89. e2b7c4d test_linuxaudio: by Jeremy Hylton · 24 years ago
  90. d1229f5 Uncommented tests that failed for cStringIO, by Jim Fulton · 24 years ago
  91. 6d699ca Adding Jeremy's new test_import (SF patch 101709). by Tim Peters · 24 years ago
  92. 962c9e7 Add SAXReaderNotAvailable, and use it to distinguish between an by Martin v. Löwis · 24 years ago
  93. c54d190 SF bug 115831 and Ping's SF patch 101751, 0.0**-2.0 returns inf rather than by Tim Peters · 24 years ago
  94. d68d0a6 Fix for test_class.py on Win64. id(self), which on Win64 returns a by Trent Mick · 24 years ago
  95. cf0a1cc Support non-namespace elements in *ElementNS of XMLGenerator. by Martin v. Löwis · 24 years ago
  96. d11b5e5 Recompile pattern if (?x) flag was found inside the pattern during the by Fredrik Lundh · 24 years ago
  97. f2c1be2 On some systems (like Solaris), the master end of a tty/pty pair is by Thomas Wouters · 24 years ago
  98. 65d4bc6 Fixed negative lookahead/lookbehind. Closes bug #115618. by Fredrik Lundh · 24 years ago
  99. 370a29f Added a zip() test where one of the arguments is an instance whose by Barry Warsaw · 24 years ago
  100. efffd28 Add mimetools testcase. by Martin v. Löwis · 24 years ago