1. a9da5ae Use find() instead of looping over the string in expanduser(). by Walter Dörwald · 22 years ago
  2. befa37d Minor updates: by Raymond Hettinger · 22 years ago
  3. 5edd785 Port test_complex.py to unittest. by Walter Dörwald · 22 years ago
  4. be97153 SF bug #753451: classmethod abuse --> SystemError by Raymond Hettinger · 22 years ago
  5. e8049bef Use _PyEval_SliceIndex to handle list.index() calls with by Walter Dörwald · 22 years ago
  6. 2743d87 Fix sloppy index() implementation: by Guido van Rossum · 22 years ago
  7. d05abde SF #754014: list.index() should accept optional start, end arguments by Raymond Hettinger · 22 years ago
  8. c8106e1 test_posixpath.py now uses unittest. The output file is no longer needed. by Raymond Hettinger · 22 years ago
  9. 98a379e Add test for bug #751998. by Neal Norwitz · 22 years ago
  10. b47243a Complete rewrite of tests by Walter Dorwald as unittest tests. by Brett Cannon · 22 years ago
  11. f545baa Whitespace normalization. by Tim Peters · 22 years ago
  12. 17fb507 Treat empty dat/dir pairs as dumbdbm. Fixes #744687. by Martin v. Löwis · 22 years ago
  13. ba8f5ff Copy builtin functions as atomic. Fixes #746304. Will backport to 2.2. by Martin v. Löwis · 22 years ago
  14. 91012fe Cause calling interrupt_main in main thread raise KeyboardInterrupt instantly. by Brett Cannon · 22 years ago
  15. 4e64d78 dummy_thread modified to have interrupt_main and to behave appropriately when by Brett Cannon · 22 years ago
  16. 99d2c25 SF patch 707900, fixing bug 702858, by Steven Taschuk. by Guido van Rossum · 22 years ago
  17. 43e559a When calling tarname with an argument (and thus not use testtar.tar) return a by Brett Cannon · 22 years ago
  18. 455ea53 Make creation of temporary file and directory more portable. Also made cleanup by Brett Cannon · 22 years ago
  19. 1546bc4 add a couple test cases which involve longs and floats in 'e' format. by Skip Montanaro · 22 years ago
  20. 9caa0d1 guess_all_extensions(): Return the empty list instead of None when by Barry Warsaw · 22 years ago
  21. e2fdc61 Fix SF #749831, copy raises SystemError when getstate raises exception by Neal Norwitz · 22 years ago
  22. 56f8811 Patch #746801: FreeBSD 4 expected failures, by Charles Swiger. by Martin v. Löwis · 22 years ago
  23. 8a709b3 Factor endian-ness check out of play_sound_file(), and fix by Greg Ward · 22 years ago
  24. 40174c3 SF bug #733667: kwargs handled incorrectly by Raymond Hettinger · 22 years ago
  25. bb1861a Remove debug code from weakref_segfault(). by Guido van Rossum · 22 years ago
  26. aabe0b3 Add testcase for SF 742911. by Guido van Rossum · 22 years ago
  27. b25a52a Fix typo so that the test actually calls the tested function. by Raymond Hettinger · 22 years ago
  28. f0fa1c0 Test ability to handle various type of iterators. by Raymond Hettinger · 22 years ago
  29. 29a1def Test script changed. by Greg Ward · 22 years ago
  30. 4f12d46 Renamed test_errors() to test_setparameters() and completely rewrote it by Greg Ward · 22 years ago
  31. 080c110 Order and number of arguments to setparameters() has changed. by Greg Ward · 22 years ago
  32. e8b0f04 * Beefed-up tests * Allow tuple re-use * Call tp_iternext directly by Raymond Hettinger · 22 years ago
  33. 893801e Add more tests from RFC 2202. by Jeremy Hylton · 22 years ago
  34. 50d8b8b Fleshed out WeakKeyDictionary.__delitem__ NEWS to cover issues raised on by Tim Peters · 22 years ago
  35. 886128f SF 742860: WeakKeyDictionary __delitem__ uses iterkeys by Tim Peters · 22 years ago
  36. e87568d SF bug 705231: Assertion failed, python aborts. by Tim Peters · 22 years ago
  37. 8891021 Port test_mimetools.py to PyUnit and add various tests. by Walter Dörwald · 22 years ago
  38. 35c6cd0 Walter's last checkin also needs to work on doubles. by Neal Norwitz · 22 years ago
  39. cf99b0a test_byteswap() fails on alphas, because treating the byte swapped bit by Walter Dörwald · 22 years ago
  40. 4d508ad Fix for SF [ 734869 ] Lambda functions in list comprehensions by Jeremy Hylton · 22 years ago
  41. e960e22 Added a test for the fix of SF bug #658233, where continuation lines by Barry Warsaw · 22 years ago
  42. 7789237 * Correct Sniffer doc to correspond to the implementation. by Skip Montanaro · 22 years ago
  43. 9a3a9f7 Consider \U-escapes in raw-unicode-escape. Fixes #444514. by Martin v. Löwis · 22 years ago
  44. 9e46abe Fix array.array.insert(), so that it treats negative indices as by Walter Dörwald · 22 years ago
  45. ba39d9c Add another error case to the insert test. by Walter Dörwald · 22 years ago
  46. 7fd9424 Port test_array and test_winsound to PyUnit. Enhance tests for array by Walter Dörwald · 22 years ago
  47. 74e6766 User cStringIO instead of StringIO. by Raymond Hettinger · 22 years ago
  48. b0c854d datetime.timedelta is now subclassable in Python. The new test shows by Tim Peters · 22 years ago
  49. 72c5c77 minor fix, jython-only. Don't asssume stdout to save is the ur-stdout. by Samuele Pedroni · 22 years ago
  50. a98924a datetime.datetime and datetime.time can now be subclassed in Python. Brr. by Tim Peters · 22 years ago
  51. ab0053a simpler temp dir cleanup by Skip Montanaro · 22 years ago
  52. de9a0d3 beefed up version: jython support, covers now fixed differences between CPython/Jython. by Samuele Pedroni · 22 years ago
  53. eb1a496 test_subclass_date(): Beefed this up, to check that new instance by Tim Peters · 22 years ago
  54. 1ba24b4 Include module name in doctest summary. by Raymond Hettinger · 22 years ago
  55. 627728a Use test_support.run_doctest() by Raymond Hettinger · 22 years ago
  56. 35b34bd Provide a clue that the doctests have run. by Raymond Hettinger · 22 years ago
  57. 929f06c Minor cleanups. by Raymond Hettinger · 22 years ago
  58. 813cec9 test_fileno(): Skip this test on Windows. by Tim Peters · 22 years ago
  59. a71319e Fleshed out tests for urllib requiring a network connection. by Brett Cannon · 22 years ago
  60. 065f7b8 Fixed test_anydbm_creates to use proper paths for the created db. by Brett Cannon · 22 years ago
  61. c2659cf Whitespace normalization. by Tim Peters · 22 years ago
  62. 0ff2ee0 Effectively renamed tokenize_tests.py to have a txt extension instead. by Tim Peters · 22 years ago
  63. 11cb813 Close the file after tokenizing it. Because the open file object was by Tim Peters · 22 years ago
  64. 172d9ef Beefed up timezone support. UTC and GMT are now always recognized timezones by Brett Cannon · 22 years ago
  65. a94568a Patch #734231: Update RiscOS support. In particular, correct by Martin v. Löwis · 22 years ago
  66. b7b4ce2 All two more modules with __all__. by Raymond Hettinger · 22 years ago
  67. 9e082f4 Add DedentTestCase to test dedent() function. by Greg Ward · 22 years ago
  68. 686b14d SF bug #730296: Unexpected Changes in list Iterator by Raymond Hettinger · 22 years ago
  69. cc55cb9 SF #596434: add test_funky_parens() to probe some more of the tricky by Greg Ward · 22 years ago
  70. 4912857 SF #726446: ensure wrap() raises ValueError when width <= 0. by Greg Ward · 22 years ago
  71. 6967f2c don't need to worry about file endianness by Skip Montanaro · 22 years ago
  72. f0776d2 Data file for bsddb185 test by Skip Montanaro · 22 years ago
  73. 46f4e79 test case for bsddb185 module by Skip Montanaro · 22 years ago
  74. 823ba28 the new bsddb185 module is an expected skip on most platforms (this may not by Skip Montanaro · 22 years ago
  75. 1a56665 add not-yet-supported Unicode test just so it doesn't get lost. by Skip Montanaro · 22 years ago
  76. 411e5a2 Port test_uu.py to PyUnit. From SF patch #662807. by Walter Dörwald · 22 years ago
  77. ce6829a On Mac OS X pwd.getpwall() might return the tuples by Walter Dörwald · 22 years ago
  78. c1b2cb9 SF bug 622042: Don't expect response body from HEAD request. by Jeremy Hylton · 22 years ago
  79. f1cfb62 'forget' now also deletes any proper .pyo files. by Brett Cannon · 22 years ago
  80. 015dd82 Somewhere along the way, the softspace attr of file objects became read- by Tim Peters · 22 years ago
  81. 4d28d96 Refer to __builtin__.file, not __builtins__.file by Martin v. Löwis · 22 years ago
  82. e59e2ba Patch #711902: Cause pydoc to show data descriptor __doc__ strings. by Martin v. Löwis · 22 years ago
  83. 7c2bb5b * Added a substantial number of edge case and argument tests for by Raymond Hettinger · 22 years ago
  84. 27922ee Apply the simplified test_support boilerplate. by Raymond Hettinger · 22 years ago
  85. 320a1b0 Simplify ref count test. by Raymond Hettinger · 22 years ago
  86. 8fd3f87 Add StopIteration tests. Simplify test_main(). by Raymond Hettinger · 22 years ago
  87. 341deb7 The previous made the stop argument optional. by Raymond Hettinger · 22 years ago
  88. 14ef54c SF bug #730685: itertools.islice stop argument is not optional by Raymond Hettinger · 22 years ago
  89. 2e973c0 Added missing modules to __all__ check. by Raymond Hettinger · 22 years ago
  90. 91bbd9a Used sets.Set() to compare unordered sequences. Improves clarity and brevity. by Raymond Hettinger · 22 years ago
  91. 21d3a32 Combine the functionality of test_support.run_unittest() by Walter Dörwald · 22 years ago
  92. 90437c0 Consistently use test_support.foo everywhere. by Walter Dörwald · 22 years ago
  93. 1bc2fdd Delete comment my last checkin rendered obsolete. by Michael W. Hudson · 22 years ago
  94. f9addb6 Change from a threading.Condition object to a threading.Event object for by Brett Cannon · 22 years ago
  95. 13da5fa Make time.sleep calls go to 0 for common testing. by Brett Cannon · 22 years ago
  96. e6b7033 Flesh out test_support docs. by Brett Cannon · 22 years ago
  97. 75ab146 Allow "@" in unquoted attribute values. by Fred Drake · 22 years ago
  98. 721adf9 Port test_richcmp.py to PyUnit. From SF patch #662807 which additional by Walter Dörwald · 22 years ago
  99. 1b0be2d Use the new htmlentitydefs.codepoint2name for test_xmlcharnamereplace() by Walter Dörwald · 22 years ago
  100. 1a4a9d0 Add doctest for example in the library reference. by Raymond Hettinger · 22 years ago