1. 2acb54a improved the ucnhash test a bit by Fredrik Lundh · 25 years ago
  2. ee865c6 added "getcode" and "getname" methods to the ucnhash module (they're by Fredrik Lundh · 25 years ago
  3. 0fdb90c refactored the unicodeobject/ucnhash interface, to hide the by Fredrik Lundh · 25 years ago
  4. cc58363 urllib.py very recently changed to produce uppercase escapes, but no by Tim Peters · 25 years ago
  5. 8880f6d Whitespace normalization. by Tim Peters · 25 years ago
  6. 1a8a53d test_urllib is failing on Windows. I don't know why, but I can at least by Tim Peters · 25 years ago
  7. 983874d Use constructor form of "raise"; normalize <wink> docstrings. by Tim Peters · 25 years ago
  8. d93c0b6 Jeremy's patch #103323: trivial tests of all untested modules. by Tim Peters · 25 years ago
  9. e1bb5f9 make error msg more informative when test of exec fails by Jeremy Hylton · 25 years ago
  10. 047e2c9 add test for SyntaxError on def f(a): global a by Jeremy Hylton · 25 years ago
  11. b4ed8c4 add test of bastion and rexec to std regression test suite by Jeremy Hylton · 25 years ago
  12. 2312024 Add test that ensures hash() of objects defining __cmp__ or __eq__ but by Guido van Rossum · 25 years ago
  13. 0c6614c Add test that ensures hash([]) and hash({}) raise TypeError. by Guido van Rossum · 25 years ago
  14. 4e8db2e Since I'm about to check in a change to the recursion-detection code by Guido van Rossum · 25 years ago
  15. 2f1064c A dumb test for the dumdbm module. by Guido van Rossum · 25 years ago
  16. 890f209 Add test for comparing recursive data types. by Guido van Rossum · 25 years ago
  17. 9710bd5 Add test for misbehaving rich comparisons (always returning 0) -- by Guido van Rossum · 25 years ago
  18. c4a6e8b Rich comparison tests by Guido van Rossum · 25 years ago
  19. d2bf3b7 Whitespace normalization. Leaving tokenize_tests.py alone for now. by Tim Peters · 25 years ago
  20. f785042 a bold attempt to fix things broken by MAL's verify patch: import by Fredrik Lundh · 25 years ago
  21. f27cc5b Marc-Andre must not have run these tests -- they used verify() but by Guido van Rossum · 25 years ago
  22. 3661908 This patch removes all uses of "assert" in the regression test suite by Marc-André Lemburg · 25 years ago
  23. 8551dd6 Stop creating an unbounded number of "Jack is my hero" files under Windows. by Tim Peters · 25 years ago
  24. ad7c98e This patch adds a new builtin unistr() which behaves like str() by Marc-André Lemburg · 25 years ago
  25. 846d6db Fix a bizarre typo in the helper class ComparableException: the by Guido van Rossum · 25 years ago
  26. d2ebe87 Changed name of codec to full path name. This allows importing by Marc-André Lemburg · 25 years ago
  27. e69d3d7 Use __name__ instead of "test_regex" as the module name in the by Guido van Rossum · 25 years ago
  28. 3a645e4 Added checks to prevent PyUnicode_Count() from dumping core by Marc-André Lemburg · 25 years ago
  29. 1c5aa69 bumped SRE version number to 2.1. cleaned up and added 1.5.2 by Fredrik Lundh · 25 years ago
  30. 10bc593 Ugh. Sorry. Checked in the wrong file. Please ignore revision 1.3; by Ka-Ping Yee · 25 years ago
  31. 27ac0d1 better format names and error messages by Ka-Ping Yee · 25 years ago
  32. 2057970 This patch makes sure that the function name always appears in the error by Ka-Ping Yee · 25 years ago
  33. 1ff08b1 Add tokenizer support and tests for u'', U"", uR'', Ur"", etc. by Ka-Ping Yee · 25 years ago
  34. 534c60f Add a test case suggested by Guido, where a method is created with the by Barry Warsaw · 25 years ago
  35. 4a420a0 Committing PEP 232, function attribute feature, approved by Guido. by Barry Warsaw · 25 years ago
  36. 2e24044 from the really-stupid-bug department: uppercase literals should match by Fredrik Lundh · 25 years ago
  37. fa25a7d -- don't use recursion for unbounded non-greedy repeat (bugs #115903, #115696) by Fredrik Lundh · 25 years ago
  38. 538f05c reapplied Fred's "recommended style" patch... by Fredrik Lundh · 25 years ago
  39. 770617b SRE fixes for 2.1 alpha: by Fredrik Lundh · 25 years ago
  40. 2caf8df SF bug 128713: type(mmap_object) blew up on Linux. by Tim Peters · 25 years ago
  41. 73cbc5e Fix stupidity. by Tim Peters · 25 years ago
  42. 9fadfb0 Guido found a brand new race in tempfile on Linux, due to Linux changing by Tim Peters · 25 years ago
  43. ef34274 Moved the test codec definition to a new module and updated the test and by Marc-André Lemburg · 25 years ago
  44. 58c82f0 Assorted xreadlines problems: by Tim Peters · 25 years ago
  45. 07b78a8 Test for xreadline. by Guido van Rossum · 25 years ago
  46. 3a55f95 18 isn't a prime (duh). by Tim Peters · 25 years ago
  47. 86821b2 MS Win32 .readline() speedup, as discussed on Python-Dev. This is a tricky by Tim Peters · 25 years ago
  48. e3fb18c Add more regression tests, including for the import statement variations. by Fred Drake · 25 years ago
  49. 1109db4 This patch adds a new feature to the builtin charmap codec: by Marc-André Lemburg · 25 years ago
  50. a4d18a0 Add test cases based on RFC 1808. So now we actually have a test suite by Fred Drake · 25 years ago
  51. 1a7aab7 When a PyCFunction that takes only positional parameters is called with by Fred Drake · 25 years ago
  52. 0ee7d82 No more RCmp. by Neil Schemenauer · 25 years ago
  53. 623116a Sequence repeat works now for in-place multiply with an integer type by Neil Schemenauer · 25 years ago
  54. aa726ba __rcmp__ no longer gets called on instances. Remove the test for it. by Neil Schemenauer · 25 years ago
  55. 38f0223 Numbers no longer compare smaller than all other types. Fix the only by Neil Schemenauer · 25 years ago
  56. 5ab3661 Actually call the object with an __call__ method, instead of just by Jeremy Hylton · 25 years ago
  57. a866df8 This patch changes the default behaviour of the builtin charmap by Marc-André Lemburg · 25 years ago
  58. e7e694f Use == rather than cmp(). The return value of cmp() is not well defined when by Neil Schemenauer · 25 years ago
  59. 38796d0 Use numbers that can be accurately represented on binary machines. I hope by Neil Schemenauer · 25 years ago
  60. 6d0cee1 Add forgotten import by Andrew M. Kuchling · 25 years ago
  61. fd288c7 Add more tests for compare and coercion in preparation for the coercion by Neil Schemenauer · 25 years ago
  62. ad4a558 Added test case for legal DOM children by Andrew M. Kuchling · 25 years ago
  63. 1a4d77b Christmas present to myself: changed regrtest in two ways: by Tim Peters · 25 years ago
  64. 36cdad1 Fred, THIS NEEDS DOCS! The function docstrings tell the tale. by Tim Peters · 25 years ago
  65. da7bf4e Add test case for SF bug by Tim Peters · 25 years ago
  66. 1e0611b The "context" parameter to the ExternalEntityRefParameter exposes internal by Fred Drake · 25 years ago
  67. 9a1a7dd The regression test for the regex module should not trip the deprecation by Fred Drake · 25 years ago
  68. c867f74 Change expected message for ValueError, fixing bug #126400 by Andrew M. Kuchling · 25 years ago
  69. 70f1288 Use binary mode to open "wave" files. by Guido van Rossum · 25 years ago
  70. 8b26454 Test more split argument combinations: by Guido van Rossum · 25 years ago
  71. 8b74b15 Test some Unicode pickling endcases. by Guido van Rossum · 25 years ago
  72. 99664e4 gdbm.open() no longer accepts garbage in the flags string. Fix the tests. by Neil Schemenauer · 25 years ago
  73. 1703cf6 Before calling traceback.print_exc(), call sys.stdout.flush(). This makes by Fred Drake · 25 years ago
  74. 4d192b3 Add test case for error message raised by bad % format character by Andrew M. Kuchling · 25 years ago
  75. 3277da0 Update the test suite to cover more ground. by Fred Drake · 25 years ago
  76. 132dce2 Update the code to better reflect recommended style: by Fred Drake · 25 years ago
  77. b822c61 Added test for {}.popitem(). by Guido van Rossum · 25 years ago
  78. e1578ce Added tests to avoid regression on bug #125375. by Fred Drake · 25 years ago
  79. 3d5f7e8 Add test cases for ConfigParser.remove_option() behavior. This includes by Fred Drake · 25 years ago
  80. 5725d1e Backing out my changes. Improved version coming soon to a Source Forge near you! by Moshe Zadka · 25 years ago
  81. 1a62750 Added .first{item,value,key}() to dictionaries. by Moshe Zadka · 25 years ago
  82. a3a3a03 Fox for SF bug #123859: %[duxXo] long formats inconsistent. by Tim Peters · 25 years ago
  83. 15ffc71 Slight improvement to Unicode test suite, inspired by patch #102563: by Guido van Rossum · 25 years ago
  84. b7f0cef Update test output. by Fred Drake · 25 years ago
  85. a1bde80 testInsertBefore(): Rewritten to actually test insertBefore() somewhat. by Fred Drake · 25 years ago
  86. cc78e47 Verify that str(a) and repr(a) don't blow up (part of SF patch 102068). by Tim Peters · 25 years ago
  87. b046b76 Added test cases to detect regression on SourceForge bug #121965. by Fred Drake · 25 years ago
  88. fad27ae Added 38,642 missing characters to the Unicode database (first-last by Fredrik Lundh · 25 years ago
  89. 24ec6fb track recent change to test_extcall.py by Jeremy Hylton · 25 years ago
  90. 6b4ec51 Fix for SF bug #117241 by Jeremy Hylton · 25 years ago
  91. ebc37b2 -- properly reset groups in findall (bug #117612) by Fredrik Lundh · 25 years ago
  92. 661ea26 Ka-Ping Yee <ping@lfw.org>: by Fred Drake · 25 years ago
  93. bd6f4fb Insert the current directory to the front of sys.path -- and remove it by Guido van Rossum · 25 years ago
  94. 0702507 Added a test case for the saxutils.prepare_input_source setSystemId bug. by Lars Gustäbel · 25 years ago
  95. cfd3bd8 Updated output. by Lars Gustäbel · 25 years ago
  96. 2fc5294 Added some more tests here and there. by Lars Gustäbel · 25 years ago
  97. 098b55a Make reindent happy, but not in the way it planned! by Fred Drake · 25 years ago
  98. 004d5e6 Make reindent.py happy (convert everything to 4-space indents!). by Fred Drake · 25 years ago
  99. 2e6d25c Use 4-space indents. by Fred Drake · 25 years ago
  100. 2ec80fa Clean up the temporary file when done with it. by Fred Drake · 25 years ago