1. b0fefc5 Convert the weakref test suite to PyUNIT, and add tests that exercise weak by Fred Drake · 23 years ago
  2. 015415e SRE 2.1b2: increase the chances that the sre test works on other machines... by Fredrik Lundh · 23 years ago
  3. 987f133 SRE 2.1b2: forgot to update one output file (sorry, Fred!) by Fredrik Lundh · 23 years ago
  4. 24a4191 Changed doctest to run tests in alphabetic order of name. by Tim Peters · 23 years ago
  5. 09ccc3a Test that traceback module works with SyntaxErrors with or without carets. by Jeremy Hylton · 23 years ago
  6. 9175114 Add test cases for the fnmatch module. by Fred Drake · 23 years ago
  7. 5c7a251 Add tests for recent changes: by Jeremy Hylton · 23 years ago
  8. e241e29 Add test for a list comprehension that is nested in the left-hand part by Jeremy Hylton · 23 years ago
  9. 9e6f278 Repair test_doctest's expected-output file (Guido added some new output). by Tim Peters · 23 years ago
  10. 0f33604 SF bug [ #409448 ] Complex division is braindead by Tim Peters · 23 years ago
  11. 5b44a67 Add test to verify that nested functions with free variables don't by Jeremy Hylton · 23 years ago
  12. fc35de4 test_global was broken by some recent checkin. Repairing. by Tim Peters · 23 years ago
  13. 9aa643c Test interaction of global and nested scopes -- thanks to Samuele Pedroni. by Guido van Rossum · 23 years ago
  14. 2922ea8 Add test case for global stmt at module level. by Jeremy Hylton · 23 years ago
  15. 42efed0 update output to reflect exception that is now raised by Jeremy Hylton · 23 years ago
  16. 62e2c7e Add regression test for future statements. This adds eight files, but by Jeremy Hylton · 23 years ago
  17. 8e43cd7 verify that warnings are issued for bogus uses of global by Jeremy Hylton · 23 years ago
  18. 5e16333 Patch #403985: Add support for weak-keyed dictionaries by Martin v. Löwis · 23 years ago
  19. 6397c7c inspect: a module for getting information out of live Python objects by Ka-Ping Yee · 23 years ago
  20. 3c823aa Make sure ConfigParser uses .optionxform() consistently; this affects by Fred Drake · 23 years ago
  21. ffc215a Add __future__.py to std library, + dull test to verify that assignments by Tim Peters · 23 years ago
  22. 9a0f98e Add test case from bug #124981: zlib decompress of sync-flushed data fails by Andrew M. Kuchling · 23 years ago
  23. 8b94b1c Added test for patch #103473: test an unquoted cookie value containing '=' by Andrew M. Kuchling · 23 years ago
  24. 121b6eb SF patch #103749: implicit tuple + default arg by Jeremy Hylton · 23 years ago
  25. f828e2d Add simple section for assert, including assert w/ lambdas by Jeremy Hylton · 23 years ago
  26. 4779399 Add test for syntax error on "x = 1 + 1". by Jeremy Hylton · 23 years ago
  27. 60e23f4 Change doctest exception example to one whose detail hasn't changed since 1.5.2. by Tim Peters · 23 years ago
  28. ea4f931 Teach doctest about newer "(most recent call last)" traceback spelling. by Tim Peters · 23 years ago
  29. 95b96d3 Added options that use square brackets in their names; this ensures that by Fred Drake · 23 years ago
  30. 9ae2148 Moved SequenceMatcher from ndiff into new std library module difflib.py. by Tim Peters · 23 years ago
  31. 6db54c6 Add std test for doctest. by Tim Peters · 23 years ago
  32. cafd495 In O_writelines: Replace use of string.joinfields with "".join. by Jeremy Hylton · 23 years ago
  33. 97a0167 update test cases for recent compiler changes: exec/import * in nested by Jeremy Hylton · 23 years ago
  34. de60248 Fix test 9 (caught by ?!ng) Add tests for unbound locals (Nick Mathewson) by Jeremy Hylton · 24 years ago
  35. 5e7cb24 Add minimal interface to symtable: _symtable module. by Jeremy Hylton · 24 years ago
  36. 9ea17ac Patch derived from Trent's 101162: a Python/C API testing framework. by Tim Peters · 24 years ago
  37. 3faa52e Allow 'continue' inside 'try' clause SF patch 102989 by Thomas Wouters by Jeremy Hylton · 24 years ago
  38. 483638c Undo recent change that banned using import to bind a global, as per by Jeremy Hylton · 24 years ago
  39. 41deb1e PEP 205, Weak References -- initial checkin. by Fred Drake · 24 years ago
  40. ac25a38 add test for illegal imports by Jeremy Hylton · 24 years ago
  41. 619eea6 PEP 227 implementation by Jeremy Hylton · 24 years ago
  42. 4588c78 PEP 227 implementation by Jeremy Hylton · 24 years ago
  43. 92e9f29 add extra tests to verify that co_varnames is being set up properly by Jeremy Hylton · 24 years ago
  44. 42756df Fix the test output, now that escapes in repr() of string and Unicode by Guido van Rossum · 24 years ago
  45. 0fc8b74 Fix the test output, now that escapes in repr() of string and Unicode by Guido van Rossum · 24 years ago
  46. fa004ad Show '\011', '\012', and '\015' as '\t', '\n', '\r' in strings. by Ka-Ping Yee · 24 years ago
  47. 578ceee Add simple test of list comprehension that uses a name that isn't by Jeremy Hylton · 24 years ago
  48. e935816 Reorganize pickle/cPickle testing so the tests pass regardless of the order by Tim Peters · 24 years ago
  49. d304f44 Patch #103343: Allow the important test_pkg to succeed under Jython. by Tim Peters · 24 years ago
  50. 08dabf0 Patch #103344: Sort dicts from extcall for easier comparison with Jython. by Tim Peters · 24 years ago
  51. e99d5ea added __all__ lists to a number of Python modules by Skip Montanaro · 24 years ago
  52. 0a5f91f Now that Marc-Andre has retracted unistr(), remove the tests. by Guido van Rossum · 24 years ago
  53. 2acb54a improved the ucnhash test a bit by Fredrik Lundh · 24 years ago
  54. d93c0b6 Jeremy's patch #103323: trivial tests of all untested modules. by Tim Peters · 24 years ago
  55. b4ed8c4 add test of bastion and rexec to std regression test suite by Jeremy Hylton · 24 years ago
  56. 2f1064c A dumb test for the dumdbm module. by Guido van Rossum · 24 years ago
  57. c4a6e8b Rich comparison tests by Guido van Rossum · 24 years ago
  58. ad7c98e This patch adds a new builtin unistr() which behaves like str() by Marc-André Lemburg · 24 years ago
  59. 10bc593 Ugh. Sorry. Checked in the wrong file. Please ignore revision 1.3; by Ka-Ping Yee · 24 years ago
  60. 27ac0d1 better format names and error messages by Ka-Ping Yee · 24 years ago
  61. 2057970 This patch makes sure that the function name always appears in the error by Ka-Ping Yee · 24 years ago
  62. 1ff08b1 Add tokenizer support and tests for u'', U"", uR'', Ur"", etc. by Ka-Ping Yee · 24 years ago
  63. 4a420a0 Committing PEP 232, function attribute feature, approved by Guido. by Barry Warsaw · 24 years ago
  64. 2caf8df SF bug 128713: type(mmap_object) blew up on Linux. by Tim Peters · 24 years ago
  65. 9fadfb0 Guido found a brand new race in tempfile on Linux, due to Linux changing by Tim Peters · 24 years ago
  66. ef34274 Moved the test codec definition to a new module and updated the test and by Marc-André Lemburg · 24 years ago
  67. 58c82f0 Assorted xreadlines problems: by Tim Peters · 24 years ago
  68. 07b78a8 Test for xreadline. by Guido van Rossum · 24 years ago
  69. 86821b2 MS Win32 .readline() speedup, as discussed on Python-Dev. This is a tricky by Tim Peters · 24 years ago
  70. e3fb18c Add more regression tests, including for the import statement variations. by Fred Drake · 24 years ago
  71. 1109db4 This patch adds a new feature to the builtin charmap codec: by Marc-André Lemburg · 24 years ago
  72. a4d18a0 Add test cases based on RFC 1808. So now we actually have a test suite by Fred Drake · 24 years ago
  73. 0ee7d82 No more RCmp. by Neil Schemenauer · 24 years ago
  74. 623116a Sequence repeat works now for in-place multiply with an integer type by Neil Schemenauer · 24 years ago
  75. e7e694f Use == rather than cmp(). The return value of cmp() is not well defined when by Neil Schemenauer · 24 years ago
  76. 38796d0 Use numbers that can be accurately represented on binary machines. I hope by Neil Schemenauer · 24 years ago
  77. fd288c7 Add more tests for compare and coercion in preparation for the coercion by Neil Schemenauer · 24 years ago
  78. ad4a558 Added test case for legal DOM children by Andrew M. Kuchling · 24 years ago
  79. 36cdad1 Fred, THIS NEEDS DOCS! The function docstrings tell the tale. by Tim Peters · 24 years ago
  80. 1e0611b The "context" parameter to the ExternalEntityRefParameter exposes internal by Fred Drake · 24 years ago
  81. 3277da0 Update the test suite to cover more ground. by Fred Drake · 24 years ago
  82. e1578ce Added tests to avoid regression on bug #125375. by Fred Drake · 24 years ago
  83. b7f0cef Update test output. by Fred Drake · 24 years ago
  84. fad27ae Added 38,642 missing characters to the Unicode database (first-last by Fredrik Lundh · 24 years ago
  85. 24ec6fb track recent change to test_extcall.py by Jeremy Hylton · 24 years ago
  86. 661ea26 Ka-Ping Yee <ping@lfw.org>: by Fred Drake · 24 years ago
  87. 0702507 Added a test case for the saxutils.prepare_input_source setSystemId bug. by Lars Gustäbel · 24 years ago
  88. cfd3bd8 Updated output. by Lars Gustäbel · 24 years ago
  89. 0aaed27 Added test for regression on SourceForge bug #117490. by Fred Drake · 24 years ago
  90. 98c8184 Test for math.* exceptional behavior only in verbose mode, so that the by Tim Peters · 24 years ago
  91. 5bad5a4 Updated test suite to latest pulldom changes. by Lars Gustäbel · 24 years ago
  92. 22d5895 Added a test for the StringIO write() error I just fixed. by Guido van Rossum · 24 years ago
  93. 1d12061 Stop raising OverflowError on underflows reported by libm (errno==ERANGE and by Tim Peters · 24 years ago
  94. f27f5ab Added additional test cases for pulldom modifications. by Lars Gustäbel · 24 years ago
  95. cb953d7 Test the exception-raising for error cases in copy_reg. by Fred Drake · 24 years ago
  96. 16b198e wave test output by Guido van Rossum · 24 years ago
  97. ebe7302 Move the test for confirmation that all nodes have been freed into the by Fred Drake · 24 years ago
  98. e9f922f Adapt test output to changed error message. by Guido van Rossum · 24 years ago
  99. ce6292e Correct output. by Guido van Rossum · 24 years ago
  100. 5c0b43d The test is good, but Jim forgot to check in the updated output. by Fred Drake · 24 years ago