1. 8430c58 AMK's latest by Guido van Rossum · 26 years ago
  2. a50547e Track changes in tokenize.py by Guido van Rossum · 26 years ago
  3. 41360a4 Mass check-in after untabifying all files that need it. by Guido van Rossum · 26 years ago
  4. d151d34 Add test for core dump -- make sure it doesn't come back! by Guido van Rossum · 27 years ago
  5. e60142f Adding output of test_xmllib.py by Guido van Rossum · 27 years ago
  6. c9aef03 Make this test work when imported from the interpreter instead of run by Guido van Rossum · 27 years ago
  7. 02505e4 New version of xmllib from Sjoerd. by Guido van Rossum · 27 years ago
  8. f473cb0 Added tests for qualified sub and split by Guido van Rossum · 27 years ago
  9. f5910e4 Add tests for re.L(OCALE). by Guido van Rossum · 27 years ago
  10. 629bcfb Make this test succeed even when using "import test.test_zlib". by Guido van Rossum · 27 years ago
  11. 92d91f5 Move %x test to nonstandard section because it appears to be locale specific. by Guido van Rossum · 27 years ago
  12. 30da0ea Believe it or not, some people have an empty group database. by Guido van Rossum · 27 years ago
  13. 6a99984 Use long() instead of int() to compare mktime(localtime(t) with t... by Guido van Rossum · 27 years ago
  14. dfa6790 New re version from AMK by Guido van Rossum · 27 years ago
  15. 91221c2 Support for netbsd1 and freebsd3, after suggestions by Anders Andersen by Guido van Rossum · 27 years ago
  16. c99a239 Added strop.split tests when sep is None. by Barry Warsaw · 27 years ago
  17. 9181190 Added tests of strop.replace() by Barry Warsaw · 27 years ago
  18. e2d4dd1 Use fuzzy comparison from test_support to compare outcome of by Guido van Rossum · 27 years ago
  19. 8e9ebfd os2 patch by Jeff Rush by Guido van Rossum · 27 years ago
  20. c1189eb Separate out a function pystones(loops=LOOPS) which runs the benchmark by Guido van Rossum · 27 years ago
  21. f849291 Add __init__.py to test package. by Guido van Rossum · 27 years ago
  22. e8d1139 Add empty __init__.py files to the test packages so the new policy by Guido van Rossum · 27 years ago
  23. 0874f7f Tests for tokenize.py (Ka-Ping Yee) by Guido van Rossum · 27 years ago
  24. 4e8ef5f Catch KeyboardInterrupt separately and propagate it, instead of by Guido van Rossum · 27 years ago
  25. fb5cef1 Added separate tests for {}.get(). by Guido van Rossum · 27 years ago
  26. 9b887c7 Added tests of dict.get() by Barry Warsaw · 27 years ago
  27. 9ec2ed4 Change test for re.sub() involving g<...> to use a multi-character by Guido van Rossum · 27 years ago
  28. d2c0ec7 Use `...` around binary strings. by Guido van Rossum · 27 years ago
  29. f1b0009 Fix path search for test data file so it works under more circumstances. by Guido van Rossum · 27 years ago
  30. ae631f7 There was actually a test that ensured that raising an exception A by Guido van Rossum · 27 years ago
  31. a008fa5 Fixed test for socket.error to work when it's a class exception. by Guido van Rossum · 27 years ago
  32. c8bf884 Added test for __all__. by Guido van Rossum · 27 years ago
  33. eeadc04 Look for uuencoded test files in the directory containing this module, too. by Guido van Rossum · 27 years ago
  34. bc8b2bd Look for uuencoded test files in the directory containing this module, too. by Guido van Rossum · 27 years ago
  35. f9fa20b Pass optional arguments (globals(), locals(), []) to __import__() so by Guido van Rossum · 27 years ago
  36. 10887a3 Fix details in the test: by Guido van Rossum · 27 years ago
  37. 81da02e Added feeble test for reload() of packages and submodules. by Guido van Rossum · 27 years ago
  38. 6c61242 Test set for package import. by Guido van Rossum · 27 years ago
  39. 6459627 Now produces some reassuring output. by Jeremy Hylton · 27 years ago
  40. 9dc2b8e Many more tests, including tests of many optional arguments. by Jeremy Hylton · 27 years ago
  41. d807b75 The re test suite is very slow on slower hosts. by Guido van Rossum · 27 years ago
  42. 6ed41a0 Expanded r() function to handle class exceptions. by Barry Warsaw · 27 years ago
  43. 09f9547 regression test for new sequence unpacking semantics by Barry Warsaw · 27 years ago
  44. 9525df0 Output for sequence unpacking test by Barry Warsaw · 27 years ago
  45. 558f66f Added a few more tests of exception class raising by Barry Warsaw · 27 years ago
  46. ac405ce generated output for new tests by Barry Warsaw · 27 years ago
  47. d543077 Added tests of the new builtin functions issubclass() and isinstance() by Barry Warsaw · 27 years ago
  48. a412220 Change default verbosity so that there are only three levels left: -q, by Guido van Rossum · 27 years ago
  49. e703842 Tweaks to cope with strftime returning 0 without error for %Z by Guido van Rossum · 27 years ago
  50. f07eaea Forgot to check in the fixed output for print by Guido van Rossum · 27 years ago
  51. ce32096 Oops. Of course, print b should also be print `b`. :-( by Guido van Rossum · 27 years ago
  52. c95a6c1 Use imp.find_module() as the most certain way to find the test data. by Guido van Rossum · 27 years ago
  53. 57fa217 generated by regrtest.py -g by Jeremy Hylton · 27 years ago
  54. 6eb4b6a test the zlib module only produce output if somethign goes wrong by Jeremy Hylton · 27 years ago
  55. cf00505 Added tests for \b, \B (AMK). by Guido van Rossum · 27 years ago
  56. 2b41fdc Moved some non-standard format characters out of the standard list. by Guido van Rossum · 27 years ago
  57. 5526e39 set LOOPS to 10000 by Guido van Rossum · 27 years ago
  58. c4c2641 Print `a` so encrypted text is shown in ascii, not binary. by Guido van Rossum · 27 years ago
  59. e838701 Don't call sys.exit() all over the place -- simply return the exit by Guido van Rossum · 27 years ago
  60. 95e8053 1.5a3 prerelease 1 from AMK by Guido van Rossum · 27 years ago
  61. 9d9af2c Fixes for the Mac. (Jack) by Guido van Rossum · 27 years ago
  62. 570278b Add test for function comparisons by Guido van Rossum · 27 years ago
  63. 7995ed2 The reload(sys) test no longer works due to changes in the import semantics. by Guido van Rossum · 27 years ago
  64. c864ad6 Nit: round delays to 0.1 second. by Guido van Rossum · 27 years ago
  65. 4994657 Some new tests by Jeffrey by Guido van Rossum · 27 years ago
  66. 32d6f3c Corresponding output. by Guido van Rossum · 27 years ago
  67. 06c0ec9 Several additions from Jeffrey. by Guido van Rossum · 27 years ago
  68. 23b2257 Added tests for sub, subn, and split. by Guido van Rossum · 27 years ago
  69. a0e4c1b Jeffrey's latest -- seems to solve most problems! by Guido van Rossum · 27 years ago
  70. 75fce30 Add flush() method to fake file. by Guido van Rossum · 27 years ago
  71. 9e48b27 Catch all exceptions in test modules. by Guido van Rossum · 27 years ago
  72. 65cd989 Added output from new tests. by Guido van Rossum · 27 years ago
  73. 9ddd9da Fixed a syntax error caused by a bad line in the Perl source. by Guido van Rossum · 27 years ago
  74. e8b8131 Merged Jeffrey's changes in. by Guido van Rossum · 27 years ago
  75. 16bd0ff Merged my changes in, and added all converted Perl tests. by Guido van Rossum · 27 years ago
  76. 337c6d4 Jeffrey's version by Guido van Rossum · 27 years ago
  77. 23b8d4c Tweak re_tests and test_re to differentiate between by Guido van Rossum · 27 years ago
  78. 847ed4a More tweaks; re.py is nearly there... by Guido van Rossum · 27 years ago
  79. 04a1d74 Jeffrey's newest by Guido van Rossum · 27 years ago
  80. 70f107f Three fewer incorrect failures by Guido van Rossum · 27 years ago
  81. 1d8b758 Removed the traceback output in non-verbose mode by Guido van Rossum · 27 years ago
  82. 8a9a4a2 Jeffrey's latest. by Guido van Rossum · 27 years ago
  83. 035aae0 Some small nits. 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. d9c6f4f Allow oct() result for 64-bit machines. by Guido van Rossum · 27 years ago
  87. 876736c AMK's regex test suite by Guido van Rossum · 27 years ago
  88. cf3527b socket_type --> SocketType by Fred Drake · 27 years ago
  89. ce1fa26 Added tests for dict.clear(), dict.update(), dict.copy(). by Guido van Rossum · 27 years ago
  90. f858021 Add test for presence of socket_type. by Guido van Rossum · 27 years ago
  91. 05ba2ab Fix ratecv test (Sjoerd). by Guido van Rossum · 27 years ago
  92. 462d6e6 More robust way of choosing a non-existant uid (faster, too). by Guido van Rossum · 27 years ago
  93. 6308d51 More robust way of choosing a non-existant uid (faster, too). by Guido van Rossum · 27 years ago
  94. 3f11da0 Changes to make these tests work on the Mac. by Guido van Rossum · 27 years ago
  95. 9522274 Increase the child's sleep time to 5 for slow machines. by Guido van Rossum · 27 years ago
  96. 4c4d5ce Catch nis.error and raise TestFailed instead. This catches the by Barry Warsaw · 27 years ago
  97. 4dfd458 Fix typo in error reporting. by Guido van Rossum · 27 years ago
  98. c1c96d1 Fix hex tests for 64-bit machines. by Guido van Rossum · 27 years ago
  99. 2b4d280 Suppress fork part of socket test when we can't fork. by Guido van Rossum · 27 years ago
  100. 4a0694d Fix sys.platform test -- on Win, it is 'win32', not 'win'. by Guido van Rossum · 27 years ago