1. 766e300 Use integer above sys.maxunicode for range test. Fixes #608884. 2.2.2 candidate. by Martin v. Löwis · 23 years ago
  2. a2627af Maybe this fixes test_socket on 64-bit Linux. by Guido van Rossum · 23 years ago
  3. 3cda93e Add a bunch of sys.stdout.flush() calls that will hopefully improve by Guido van Rossum · 23 years ago
  4. 6dd7d07 If PyXML is installed, there is no Node.allnodes, so that portion of by Fred Drake · 23 years ago
  5. d2909c9 Relax a test so it passes either with the standard library or PyXML. by Fred Drake · 23 years ago
  6. c8060a6 The list(xrange(sys.maxint / 4)) test blew up on 64-bit platforms. by Guido van Rossum · 23 years ago
  7. 02ff6a9 A slight change to SET_LINENO-less tracing. by Michael W. Hudson · 23 years ago
  8. 519a342 Bunch more tests. by Michael W. Hudson · 23 years ago
  9. ccd9e75 test_both(): I believe this was a typo: m is only defined if no by Barry Warsaw · 23 years ago
  10. 1a5b956 test_quote_unquote(): Added a test for the rfc822.unquote() patch by Barry Warsaw · 23 years ago
  11. 1b5112a I left some debugging junk in here; removed it. Also replaced a few by Tim Peters · 23 years ago
  12. 4f4f4d7 A few days ago a test was added here to ensure that creating an mmap by Tim Peters · 23 years ago
  13. 2412853 Fix escaping of non-ASCII characters. by Martin v. Löwis · 23 years ago
  14. 522076d Try to get test to pass on Windows by Neal Norwitz · 23 years ago
  15. 522e769 Skip UDP testing for MacPython (for now), it hangs. This may be due to by Jack Jansen · 23 years ago
  16. 9ab7dd4 Add a test case that checks that the proper exception is raises by Walter Dörwald · 23 years ago
  17. b567392 SF bug # 585792, Invalid mmap crashes Python interpreter by Neal Norwitz · 23 years ago
  18. 5c1ee17 Change the unicode.translate docstring to document that by Walter Dörwald · 23 years ago
  19. 472c522 Delete the %c test from test_date_time() untill Brett Cannon has time by Guido van Rossum · 23 years ago
  20. 602d451 Add a custom __str__ method to KeyError that applies repr() to the by Guido van Rossum · 23 years ago
  21. 6e81318 testConnectTimeout(): set the timeout to a smaller value; 0.02 by Guido van Rossum · 23 years ago
  22. 8709a42 Check whether a string resize is necessary at the end by Walter Dörwald · 23 years ago
  23. 3aeb632 PEP 293 implemention (from SF patch http://www.python.org/sf/432401) by Walter Dörwald · 23 years ago
  24. 53d58bb Further SET_LINENO reomval fixes. See comments in patch #587933. by Michael W. Hudson · 23 years ago
  25. 375e0ee The test I saw failing this morning just happened to be run at 8am by Barry Warsaw · 23 years ago
  26. fc26c07 Undo Barry's change. This file is not imported, it's fed as input to by Guido van Rossum · 23 years ago
  27. f0253f2 Restore the hex/oct constant tests that Barry commented out for fear by Guido van Rossum · 23 years ago
  28. 604cd6a complex() was the only numeric constructor that created a new instance by Raymond Hettinger · 23 years ago
  29. 18bd112 Fixed three exceptions in the Plain integers test, although I'm not by Barry Warsaw · 23 years ago
  30. c6f80fd The test_tokenize output has changed slightly, by the addition of some by Barry Warsaw · 23 years ago
  31. 266e6b1 Quite down some FutureWarnings. by Barry Warsaw · 23 years ago
  32. ea76c98 Implemented <, <=, >, >= for sets, giving subset and proper-subset by Tim Peters · 23 years ago
  33. 93d8d48 TestSubset(): Generalized the framework to support testing upcoming by Tim Peters · 23 years ago
  34. 4127e91 Rewrote all remaining assert stmts. by Tim Peters · 23 years ago
  35. 62c6243 Simplified construction of the test suite. by Tim Peters · 23 years ago
  36. de830ca Simplified code building sets of characters. by Tim Peters · 23 years ago
  37. a777799 Ack! Virtually every test here relied on an assert stmt. assert stmts by Tim Peters · 23 years ago
  38. 0bbb308 Simplified the setup for is-subset testing. by Tim Peters · 23 years ago
  39. e87ab3f Removed < <= > >= from the API. Implemented as comparisons of the by Raymond Hettinger · 23 years ago
  40. 1b9f5d4 At Tim Peter's suggestion, propagated GvR's binary operator changes to by Raymond Hettinger · 23 years ago
  41. 045e51a Expanded tests for sets of sets. by Raymond Hettinger · 23 years ago
  42. 2023c9b Fix SF bug 599128, submitted by Inyeol Lee: .replace() would do the by Guido van Rossum · 23 years ago
  43. 8b1a6d6 Code by Inyeol Lee, submitted to SF bug 595350, to implement by Guido van Rossum · 23 years ago
  44. 7c7efe9 Got rid of the toy _Set class, in favor of sets.Set. by Tim Peters · 23 years ago
  45. c6edb37 Test an em-dash with adjacent punctuation. by Greg Ward · 23 years ago
  46. 715debd Factored out BaseTestCase.check_split() method -- use it wherever by Greg Ward · 23 years ago
  47. 24a1c9c Test _split() method in test_unix_options(). by Greg Ward · 23 years ago
  48. 34f995b Add test_unix_options() to WrapTestCase to test for SF bug #596434. by Greg Ward · 23 years ago
  49. ae46931 Standardize behavior: no docstrings in test functions. by Guido van Rossum · 23 years ago
  50. 9eee554 Standardize behavior: no docstrings in test functions. Also use by Guido van Rossum · 23 years ago
  51. 327af77 Standardize behavior: no docstrings in test functions. Also strip by Guido van Rossum · 23 years ago
  52. 1c48654 Document that docstrings are verboten for test functions. by Guido van Rossum · 23 years ago
  53. 8ccd9b6 Standardize behavior: no docstrings in test functions. Also get rid by Guido van Rossum · 23 years ago
  54. a5ce2e8 Standardize behavior: no docstrings in test functions; add a proper by Guido van Rossum · 23 years ago
  55. 9ad15a3 Add test_em_dash() to WrapTestCase to make sure that TextWrapper handles by Greg Ward · 23 years ago
  56. 32c2ae7 Standardize behavior: no docstrings in test functions. by Guido van Rossum · 23 years ago
  57. 2e8bba5 Standardize behavior: create a single suite merging all test cases. by Guido van Rossum · 23 years ago
  58. 7e8fdba Standardize behavior: no docstrings in test functions; create a single by Guido van Rossum · 23 years ago
  59. cb68258 Made it more readable. by Guido van Rossum · 23 years ago
  60. f69d3c9 Simplification/cleanup in IndentTestCases. by Greg Ward · 23 years ago
  61. fd030e4 Factor LongWordTestCase out of WrapTestCase, and rename its methods by Greg Ward · 23 years ago
  62. 13c53c6 Rename base test case class to (yawn) BaseTestCase. by Greg Ward · 23 years ago
  63. ee41384 Ditch the whole loop-over-subcases way of working. Add check_wrap() to by Greg Ward · 23 years ago
  64. 9ebba9a Simplify and reformat the use of 'subcases' lists (and following by Greg Ward · 23 years ago
  65. 3dc94e1 Add comment header block. by Greg Ward · 23 years ago
  66. f676578 Conform to standards documented in README: by Greg Ward · 23 years ago
  67. 90c0b07 Test script for the textwrap module. Kindly provided by Peter Hansen by Greg Ward · 23 years ago
  68. c3e61e5 Add regression test for proper construction of sets of sets. by Raymond Hettinger · 23 years ago
  69. c9196bc Rename popitem() to pop(). (An idea from SF patch 597444.) by Guido van Rossum · 23 years ago
  70. 76afbd9 Fix some endcase bugs in unicode rfind()/rindex() and endswith(). by Guido van Rossum · 23 years ago
  71. d6cf3af Set classes and their unit tests, from sandbox. by Guido van Rossum · 23 years ago
  72. 5959c55 Added __pow__(a,b) to the operator module. Completes the pattern of by Raymond Hettinger · 23 years ago
  73. 1d0eeec OS/2 EMX behaves like Windows where file permissions are concerned by Andrew MacIntyre · 23 years ago
  74. e888cdc Get rid of _once(); inlining it takes less code. :-) by Guido van Rossum · 23 years ago
  75. 7874106 Patch by Zack W to make test_noinherit() more robust: spawn a Python by Guido van Rossum · 23 years ago
  76. 68ee012 Drop the number of test files to 100 for all the tests by Neal Norwitz · 23 years ago
  77. 80703c8 check_events(): This was failing under -O, due to not expecting any by Tim Peters · 23 years ago
  78. 0a51b58 base64.decodestring('') should return '' instead of raising an by Barry Warsaw · 23 years ago
  79. dd32a91 This is my patch by Michael W. Hudson · 23 years ago
  80. 8c91337 forgot the best part - the new tests... see patch 586561 by Skip Montanaro · 23 years ago
  81. 54df53a More changes of DeprecationWarning to FutureWarning. by Guido van Rossum · 23 years ago
  82. 88b1def The filterwarnings() call here should be updated to filter out FutureWarning. by Guido van Rossum · 23 years ago
  83. 04490bf tempfile's mkstemp(): Changed last argument from by Tim Peters · 23 years ago
  84. 20f0b36 test_many(): open only 100 temp files, not 1000. Some systems don't by Guido van Rossum · 23 years ago
  85. eb3f00a Check for trailing backslash. Fixes #593656. by Martin v. Löwis · 23 years ago
  86. 8a8da79 Patch #505705: Remove eval in pickle and cPickle. by Martin v. Löwis · 23 years ago
  87. 632a4fb runtest(): I don't know why we don't just use TESTFN, but if we have to by Tim Peters · 23 years ago
  88. 7f270ba Added a test specifically to tickle Karatsuba; it costs no appreciable runtime. by Tim Peters · 23 years ago
  89. 8b056da Add tests for including __dict__ and/or __weakref__ in __slots__. by Guido van Rossum · 23 years ago
  90. f9dd0f1 Add test for SF bug # 575229, multiple inheritance w/ slots dumps core by Neal Norwitz · 23 years ago
  91. 83499db Bug #556025: list(xrange(1e9)) --> seg fault by Jason Tishler · 23 years ago
  92. d0876b8 test_division(): Added one larger digits value, to ensure that the by Tim Peters · 23 years ago
  93. 28b0e2a Machines-- and Python --are a lot faster in relevant ways since this by Tim Peters · 23 years ago
  94. 558fc97 Don't use hex constants representing negative numbers. by Guido van Rossum · 23 years ago
  95. dc15c27 Suppress warnings about test_grammar.py that can't be suppressed inside by Guido van Rossum · 23 years ago
  96. a6fa0e6 Portable way of producing unsigned 32-bit hex output to print the CRCs. by Guido van Rossum · 23 years ago
  97. baf2963 Shut up warnings about hex()/oct() that can't be avoided. by Guido van Rossum · 23 years ago
  98. cc8764c Add C API PyUnicode_FromOrdinal() which exposes unichr() at C level. by Marc-André Lemburg · 23 years ago
  99. d92ae84 test_saveall(): Another small simplification; plus s/l/L/g. by Tim Peters · 23 years ago
  100. a1ad3f0 And one more simplification to test_saveall(). by Tim Peters · 23 years ago