- 2d72b5d Test __all__ for unittest.py by Raymond Hettinger · 21 years ago
- d55111f * Converted test to unittest format. * Expanded coverage. by Raymond Hettinger · 21 years ago
- 42a61ed Simplify doctest of tee(). by Raymond Hettinger · 21 years ago
- 1b699a5 Patch #790000: Allow os.access to handle Unicode file name. by Martin v. Löwis · 21 years ago
- deadbf5 SF #662923 by Raymond Hettinger · 21 years ago
- b7b1db9 Oops. Really fix the indentation problem this time. by Jeremy Hylton · 21 years ago
- d7fb676 Fix inconsistent mix of tabs and spaces that caused test to fail. by Jeremy Hylton · 21 years ago
- a098b33 Add an example to address a common question of how to split iterators. by Raymond Hettinger · 21 years ago
- f1827cf SF bug 801631: file.truncate fault on windows. by Tim Peters · 21 years ago
- 3f7a948 **kwds arg was missing from __init__ for Dict{Reader,Writer} classes. by Skip Montanaro · 21 years ago
- 66d09f1 SF bug #801342: Bug (documentation or real, your choice) in random.sample. by Raymond Hettinger · 21 years ago
- b859c07 SF bug #800796: Difference between hash() and __hash__() by Raymond Hettinger · 21 years ago
- f5b9373 Patch #798145: Return correct information from nl_langinfo(RADIXCHAR). by Martin v. Löwis · 21 years ago
- f70e076 Only apply case-insensitivity test on appropriate platforms.' test_filecmp.py by Raymond Hettinger · 21 years ago
- eeca37e SF bug #453515: filecmp.dircmp case sensitivity bug by Raymond Hettinger · 21 years ago
- 5d2e777 SF patch #736962: Port tests to unittest (Part 2) by Raymond Hettinger · 21 years ago
- 6d362b2 SF bug #785222: zlib monotonic test by Raymond Hettinger · 21 years ago
- f9f4c69 SF patch #736962: Port tests to unittest (Contributed by Walter Dörwald). by Raymond Hettinger · 21 years ago
- c11dbcd SF bug 797650: Infinite loop in textwrap.py by Raymond Hettinger · 21 years ago
- a56f6b6 SF bug #793826: using itertools.izip to mutate tuples by Raymond Hettinger · 21 years ago
- e8792c1 Add tests for meta- bit set by Andrew M. Kuchling · 21 years ago
- e752e20 Add simple unit test for ascii.unctrl() function by Andrew M. Kuchling · 21 years ago
- 953c6f5 Make sure parentheses are escaped when used in the format string. by Brett Cannon · 21 years ago
- 9bfe533 SF bug #795506: Wrong handling of string format code for float values. by Raymond Hettinger · 21 years ago
- 063606a test_largefile can leave its temp file open if one of many tests fail. On by Jason Tishler · 21 years ago
- 6a18012 Improvements to set.py: by Raymond Hettinger · 21 years ago
- 1954035 Keep doctests in sync with the docs. by Raymond Hettinger · 21 years ago
- c8cb5d9 Make a copy of L before appending, so the global L remains by Walter Dörwald · 21 years ago
- b2c7de4 Fix for by Michael W. Hudson · 21 years ago
- 69f31eb [Patch #739124] Add use_default_colors() to curses module by Andrew M. Kuchling · 21 years ago
- a54b92b Add a unicode prefix to the characters in the UnicodeEncodeError and by Walter Dörwald · 21 years ago
- fd196bd Enhance message for UnicodeEncodeError and UnicodeTranslateError. by Walter Dörwald · 21 years ago
- c83124a Fix bug in test_bad_timezone where test was assuming locale knew of PDT. by Brett Cannon · 21 years ago
- 0fd54d8 Unconditionally opening the temp file in text mode causes this test to fail by Jason Tishler · 21 years ago
- 5187a3b Fix handling of bad locale setup where time.tzname[0] == time.tzname[1] and by Brett Cannon · 21 years ago
- 3081d59 SF bug #778964: bad seed in python 2.3 random by Raymond Hettinger · 21 years ago
- 5475f23 SF bug #770485: cStringIO does not set closed attr by Raymond Hettinger · 21 years ago
- b5a4208 Modified itertools.izip() to match the behavior of __builtin__.zip() by Raymond Hettinger · 21 years ago
- 77fe69b Re-sync doc tests with the doc updates. by Raymond Hettinger · 21 years ago
- e723e45 Repair refcounting on error return from type_set_bases. by Michael W. Hudson · 21 years ago
- 7edd0a9 Demonstrate and fix [ 783882 ] os.lstat crashes with Unicode filename. by Mark Hammond · 21 years ago
- 5301d9c Remove useless import. by Walter Dörwald · 21 years ago
- b27cca6 Check both __div__ and __truediv__ in division tests. (From SF patch #543867) by Walter Dörwald · 21 years ago
- 0d8e16c Support trailing dots in DNS names. Fixes #782510. Will backport to 2.3. by Martin v. Löwis · 21 years ago
- 8db4403 Correct URL of normalization file. Fixes #781065. Will backport to 2.3. by Martin v. Löwis · 21 years ago
- 474335c Re-introduce caching of TimeRE and compiled regexes with added thread-safety. by Brett Cannon · 21 years ago
- ed9bf12 protect against test problems with Jython by Skip Montanaro · 21 years ago
- d5cf0b8 added test for bug 782369 by Skip Montanaro · 21 years ago
- c1b4154 more extension marshal tests and conversion to unittest - was surprised to by Skip Montanaro · 21 years ago
- eaef615 As discussed on python-dev, changed builtin.zip() to handle zero arguments by Raymond Hettinger · 21 years ago
- 175ddb5 Remove caching of TimeRE (and thus LocaleTime) instance. Error was being by Brett Cannon · 21 years ago
- 5943b4a Restored commented-out line checked in by mistake. by Tim Peters · 21 years ago
- 9390dd5 locale-restoration code: Don't leave comparison to None implicit. For by Tim Peters · 21 years ago
- 36f7e93 Fred wasn't kidding -- there really are docs for the locale module <wink>. by Tim Peters · 21 years ago
- d1deac0 Fix error in test of not comparing against 0 item of a list by Brett Cannon · 21 years ago
- c23f39c Patch #775784: YA Cygwin expected regression test skip patch by Jason Tishler · 21 years ago
- 354e3d9 Change the zipimport implementation to accept files containing by Thomas Heller · 21 years ago
- 969a700 Make sure mimetypes is reinitialized before running the tests. by Jeremy Hylton · 21 years ago
- 096d986 Restore the locale to "C" on exit. by Jeremy Hylton · 21 years ago
- bd9f520 Reflow long line. by Jeremy Hylton · 21 years ago
- 43d790c Exercise Jim Fulton's new doctest extension for running doctests in a by Raymond Hettinger · 21 years ago
- f359062 Extend last change to cover TestSuites as well as TestCases. by Raymond Hettinger · 21 years ago
- bb4a47c Prevent failure on the mac, where "mbcs" is not the file system by Mark Hammond · 21 years ago
- 21d9987 run_unittest() to support TestCase instances as well as classes. Helps with doctests. by Raymond Hettinger · 21 years ago
- 19db13b Fixed test and converted to unittest format. by Raymond Hettinger · 21 years ago
- 158af58 Fixed test and converted to unittest format. by Raymond Hettinger · 21 years ago
- 42d9016 SF patch 763201: handling of SyntaxErrors in symbol table build by Jeremy Hylton · 21 years ago
- f393fc6 Add various test cases from SF patch 543867. by Walter Dörwald · 21 years ago
- f425b1e stylistic nits: - wrap some long lines - shorten others - fix indentation by Fred Drake · 21 years ago
- 7a6c733 Make close() identical to __del__() for a dumbdbm database. Make by Tim Peters · 21 years ago
- d6f6e50 Reworked test_warnings.py: by Raymond Hettinger · 21 years ago
- dc9dcf1 This test failed on WindowsME because the full file path did not get by Raymond Hettinger · 21 years ago
- b6d2f3e Don't include slash in search string; it's OS-specific. by Jeremy Hylton · 21 years ago
- 8501466 Change warnings to avoid importing re module during startup. by Jeremy Hylton · 21 years ago
- 663d1b6 Added a new randomized test. by Tim Peters · 21 years ago
- 121d34a Fix SF bug 764095: Don't use network in test_httplib. by Jeremy Hylton · 21 years ago
- e5e065b New function sys.getcheckinterval(), to complement setcheckinterval(). by Tim Peters · 21 years ago
- cde2200 Fixes bug of timezone value being left as -1 when ``time.tzname[0] == by Brett Cannon · 21 years ago
- 12723ba Fix and test for bug #764548: by Just van Rossum · 21 years ago
- 6802c6e fixed typo in comment by Just van Rossum · 21 years ago
- 348c261 On those systems lacking the AFMT_S16_NE symbol, the test was failing by Andrew MacIntyre · 21 years ago
- bcc58e8 - added (c)StringIO tests; cStringIO usage failed in the previous by Just van Rossum · 21 years ago
- e7dfe21 Fix SF bug #763023, difflib.py: ratio() zero division not caught by Neal Norwitz · 21 years ago
- 37ca8c1 connector(): You can't use an empty string as an argument to connect() by Tim Peters · 21 years ago
- 1787a0b Fix SF bug #763770, test_socket_ssl crash by Neal Norwitz · 21 years ago
- cc0a664 Test Brett's addition of __all__ to Queue. by Raymond Hettinger · 21 years ago
- 168e73d Fix SF #763362, test_posixpath failed by Neal Norwitz · 21 years ago
- 3106817 Fix typo in error message by Neal Norwitz · 21 years ago
- 8bcbe6a Don't require that a RuntimeError is raised when playing a second by Walter Dörwald · 21 years ago
- d693a81 Fix SF 762891: "del p[key]" on proxy object raises SystemError() by Raymond Hettinger · 21 years ago
- a9002f8 Fix SF #754870, SSL crash interpreter when remote side closes during connect by Neal Norwitz · 21 years ago
- 0242070 More tests by Raymond Hettinger · 21 years ago
- b4e9986 Removed invalid test. Analysis by Bob Halley: by Raymond Hettinger · 21 years ago
- 2b6220d SF bug #762455: Python segfaults when sys.stdout is changed in getattr by Raymond Hettinger · 21 years ago
- 478c105 Whitespace normalization. by Tim Peters · 21 years ago
- 11a35f5 SF patch #760257: add socket.timeout exception (Contributed by Bob Halley) by Raymond Hettinger · 21 years ago
- 3567a87 Add take() to examples. Tighten the islice() example by Raymond Hettinger · 21 years ago
- c0fac96 SF patch #756996: Bare except in ZipFile.testzip() by Raymond Hettinger · 21 years ago
- 6f3eaa6 SF patch #761519: Fixes for bugs 760703 and 757821 by Raymond Hettinger · 21 years ago
- c4bf5ed Add a trivial test of getargspec() with a method. by Jeremy Hylton · 21 years ago