- 9e46abe Fix array.array.insert(), so that it treats negative indices as by Walter Dörwald · 22 years ago
- ba39d9c Add another error case to the insert test. by Walter Dörwald · 22 years ago
- 7fd9424 Port test_array and test_winsound to PyUnit. Enhance tests for array by Walter Dörwald · 22 years ago
- 74e6766 User cStringIO instead of StringIO. by Raymond Hettinger · 22 years ago
- b0c854d datetime.timedelta is now subclassable in Python. The new test shows by Tim Peters · 22 years ago
- 72c5c77 minor fix, jython-only. Don't asssume stdout to save is the ur-stdout. by Samuele Pedroni · 22 years ago
- a98924a datetime.datetime and datetime.time can now be subclassed in Python. Brr. by Tim Peters · 22 years ago
- ab0053a simpler temp dir cleanup by Skip Montanaro · 22 years ago
- de9a0d3 beefed up version: jython support, covers now fixed differences between CPython/Jython. by Samuele Pedroni · 22 years ago
- eb1a496 test_subclass_date(): Beefed this up, to check that new instance by Tim Peters · 22 years ago
- 1ba24b4 Include module name in doctest summary. by Raymond Hettinger · 22 years ago
- 627728a Use test_support.run_doctest() by Raymond Hettinger · 22 years ago
- 35b34bd Provide a clue that the doctests have run. by Raymond Hettinger · 22 years ago
- 929f06c Minor cleanups. by Raymond Hettinger · 22 years ago
- 813cec9 test_fileno(): Skip this test on Windows. by Tim Peters · 22 years ago
- a71319e Fleshed out tests for urllib requiring a network connection. by Brett Cannon · 22 years ago
- 065f7b8 Fixed test_anydbm_creates to use proper paths for the created db. by Brett Cannon · 22 years ago
- c2659cf Whitespace normalization. by Tim Peters · 22 years ago
- 0ff2ee0 Effectively renamed tokenize_tests.py to have a txt extension instead. by Tim Peters · 22 years ago
- 11cb813 Close the file after tokenizing it. Because the open file object was by Tim Peters · 22 years ago
- 172d9ef Beefed up timezone support. UTC and GMT are now always recognized timezones by Brett Cannon · 22 years ago
- a94568a Patch #734231: Update RiscOS support. In particular, correct by Martin v. Löwis · 22 years ago
- b7b4ce2 All two more modules with __all__. by Raymond Hettinger · 22 years ago
- 9e082f4 Add DedentTestCase to test dedent() function. by Greg Ward · 22 years ago
- 686b14d SF bug #730296: Unexpected Changes in list Iterator by Raymond Hettinger · 22 years ago
- cc55cb9 SF #596434: add test_funky_parens() to probe some more of the tricky by Greg Ward · 22 years ago
- 4912857 SF #726446: ensure wrap() raises ValueError when width <= 0. by Greg Ward · 22 years ago
- 6967f2c don't need to worry about file endianness by Skip Montanaro · 22 years ago
- f0776d2 Data file for bsddb185 test by Skip Montanaro · 22 years ago
- 46f4e79 test case for bsddb185 module by Skip Montanaro · 22 years ago
- 823ba28 the new bsddb185 module is an expected skip on most platforms (this may not by Skip Montanaro · 22 years ago
- 1a56665 add not-yet-supported Unicode test just so it doesn't get lost. by Skip Montanaro · 22 years ago
- 411e5a2 Port test_uu.py to PyUnit. From SF patch #662807. by Walter Dörwald · 22 years ago
- ce6829a On Mac OS X pwd.getpwall() might return the tuples by Walter Dörwald · 22 years ago
- c1b2cb9 SF bug 622042: Don't expect response body from HEAD request. by Jeremy Hylton · 22 years ago
- f1cfb62 'forget' now also deletes any proper .pyo files. by Brett Cannon · 22 years ago
- 015dd82 Somewhere along the way, the softspace attr of file objects became read- by Tim Peters · 22 years ago
- 4d28d96 Refer to __builtin__.file, not __builtins__.file by Martin v. Löwis · 22 years ago
- e59e2ba Patch #711902: Cause pydoc to show data descriptor __doc__ strings. by Martin v. Löwis · 22 years ago
- 7c2bb5b * Added a substantial number of edge case and argument tests for by Raymond Hettinger · 22 years ago
- 27922ee Apply the simplified test_support boilerplate. by Raymond Hettinger · 22 years ago
- 320a1b0 Simplify ref count test. by Raymond Hettinger · 22 years ago
- 8fd3f87 Add StopIteration tests. Simplify test_main(). by Raymond Hettinger · 22 years ago
- 341deb7 The previous made the stop argument optional. by Raymond Hettinger · 22 years ago
- 14ef54c SF bug #730685: itertools.islice stop argument is not optional by Raymond Hettinger · 22 years ago
- 2e973c0 Added missing modules to __all__ check. by Raymond Hettinger · 22 years ago
- 91bbd9a Used sets.Set() to compare unordered sequences. Improves clarity and brevity. by Raymond Hettinger · 22 years ago
- 21d3a32 Combine the functionality of test_support.run_unittest() by Walter Dörwald · 22 years ago
- 90437c0 Consistently use test_support.foo everywhere. by Walter Dörwald · 22 years ago
- 1bc2fdd Delete comment my last checkin rendered obsolete. by Michael W. Hudson · 22 years ago
- f9addb6 Change from a threading.Condition object to a threading.Event object for by Brett Cannon · 22 years ago
- 13da5fa Make time.sleep calls go to 0 for common testing. by Brett Cannon · 22 years ago
- e6b7033 Flesh out test_support docs. by Brett Cannon · 22 years ago
- 75ab146 Allow "@" in unquoted attribute values. by Fred Drake · 22 years ago
- 721adf9 Port test_richcmp.py to PyUnit. From SF patch #662807 which additional by Walter Dörwald · 22 years ago
- 1b0be2d Use the new htmlentitydefs.codepoint2name for test_xmlcharnamereplace() by Walter Dörwald · 22 years ago
- 1a4a9d0 Add doctest for example in the library reference. by Raymond Hettinger · 22 years ago
- 26848a3 Use Tim's suggestion to fix by Michael W. Hudson · 22 years ago
- 58ee2af Armin Rigo's fix & test for by Michael W. Hudson · 22 years ago
- 572f523 Applying patch #728656, by logistix, fixing opening of nonexistent by Gustavo Niemeyer · 22 years ago
- 1969136 Added tests for urlretrieve. Also made sure urlopen tests cleaned up properly after themselves. by Brett Cannon · 22 years ago
- 2b6dfec Raise a ValueError when there is data that was not covered in the format string. Done to match behavior of pre-existing C-based strptime implementations. by Brett Cannon · 22 years ago
- 5501b5e SF bug 728097: tmpnam problems on windows 2.3b, breaks test.test_os. by Tim Peters · 22 years ago
- 4aebbb0 Make tests clean up after themselves better. This means: by Brett Cannon · 22 years ago
- 3646ab9 Fix for part of the problem mentioned in #725149 by Greg Chapman. by Gustavo Niemeyer · 22 years ago
- c34f255 Applied patch #725106, by Greg Chapman, fixing capturing groups by Gustavo Niemeyer · 22 years ago
- 9dcbbea Factor out common boilerplate for test_support by Raymond Hettinger · 22 years ago
- 579bed7 Rewrote. As reported on c.l.py, when the test suite is run via by Tim Peters · 22 years ago
- ecf0f02 Merge back from r23b1-branch by Guido van Rossum · 22 years ago
- 5ba0054 final bit of tests converted from test_sre by Skip Montanaro · 22 years ago
- 9593792 test_sre is dead! long live test_re! by Skip Montanaro · 22 years ago
- 35b9ff3 deleted more tests which were either already in test_re or that I migrated by Skip Montanaro · 22 years ago
- 1e703c6 more tests converted from test_sre by Skip Montanaro · 22 years ago
- bf7ad96 Remove tests which were migrated to test_re.py. There are still more tests by Skip Montanaro · 22 years ago
- f4001ee Skip testing inet_ntop() an inet_pton() if they aren't defined. by Guido van Rossum · 22 years ago
- 51735b0 Fix the tests on Windows, by writing the test data file in binary mode. by Guido van Rossum · 22 years ago
- 48816c6 some sniffer tests by Skip Montanaro · 22 years ago
- 2726fcd more tests from test_sre by Skip Montanaro · 22 years ago
- 376e636 New version from Vinaj, should solve the threading problems (hopefully). by Guido van Rossum · 22 years ago
- 7d9963f copy a few tests from test_sre by Skip Montanaro · 22 years ago
- dbcede5 Port test_bool.py to PyUnit. From SF patch #662807. by Walter Dörwald · 22 years ago
- 74bfd70 Complete rewrite of module. Only has tests using temporary files; net tests by Brett Cannon · 22 years ago
- c4e0940 New generator os.walk() does a bit more than os.path.walk() does, and by Tim Peters · 22 years ago
- 47dfa4a Patch by Jp Calderone: by Guido van Rossum · 22 years ago
- 45f4130 test_re is no longer needed by Guido van Rossum · 22 years ago
- 46144be Fix test_limitations(). The match there is *expected* to raise RuntimeError. by Guido van Rossum · 22 years ago
- 0b85203 [Patch #628208] Test the 'nil' extension by Andrew M. Kuchling · 22 years ago
- 8ed06da first cut at unittest version of re tests by Skip Montanaro · 22 years ago
- d839ecd if the test is run directly (__name__ == "__main__") don't actually require by Skip Montanaro · 22 years ago
- 142da98 remove test_socketserver from the skip lists by Skip Montanaro · 22 years ago
- edb155f UnicodeTranslationsTest.setUp(): Removed the coerce flag to the by Barry Warsaw · 22 years ago
- 9928571 SF bug 665835: filter() treatment of str and tuple inconsistent by Raymond Hettinger · 22 years ago
- 54aa578 This test now uses the separate getargs_X functions from _testcapimodule. by Thomas Heller · 22 years ago
- 0eadaac Whitespace normalization. by Tim Peters · 22 years ago
- 352f947 SF patch 695710: fix bug 678519: cStringIO self iterator by Raymond Hettinger · 22 years ago
- 9f4eb6b [Patch #679505] Silence DeprecationWarning when testing rotor module by Andrew M. Kuchling · 22 years ago
- ce07c8a Max OS X returns "*" as the password in grp.getgrall() by Walter Dörwald · 22 years ago
- b28271f Do a little more searching for the data file for the test: this allows by Fred Drake · 22 years ago
- ecd2fdc Change test_pwd and test_grp so they can handle duplicate user by Walter Dörwald · 22 years ago
- a70b191 Adding new built-in function sum, with docs and tests. by Alex Martelli · 22 years ago