summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* Fix issue #1689458 by teaching frame_setlineno how to jump to the first line ofJeffrey Yasskin2009-05-201-0/+21
* Issue 6032: fix refleaks in test_urllib2_localnet.Collin Winter2009-05-181-17/+21
* While I was modifying test_trace, it threw an exception when I accidentallyJeffrey Yasskin2009-05-181-1/+1
* completely ignore old-style stuff for type checking overloadingBenjamin Peterson2009-05-161-9/+12
* properly lookup __instancecheck__ and __subclasscheck__Benjamin Peterson2009-05-161-6/+17
* use skipTest()Benjamin Peterson2009-05-161-4/+1
* Issue #2116: Weak references and weak dictionaries now support copy()ing and ...Antoine Pitrou2009-05-151-0/+88
* Issue 6024: make regrtest.py promote refleaks to test failures.Collin Winter2009-05-141-1/+11
* a useful decorator for cleaning up threadsBenjamin Peterson2009-05-142-7/+13
* prevent refleaks from threadsBenjamin Peterson2009-05-141-1/+5
* Fix test failure on Windows, and add skip check if even unicodedataR. David Murray2009-05-141-3/+7
* Issue #4050: inspect.findsource/getsource now raise an IOError if the 'source'R. David Murray2009-05-131-0/+7
* Adds a verbosity keyword argument to unittest.main plus a minor fix allowing ...Michael Foord2009-05-111-10/+13
* Issue #5981: Fix some float.fromhex bugs related to inf and nan handling.Mark Dickinson2009-05-111-0/+31
* *sigh* deal with instances correctlyBenjamin Peterson2009-05-091-0/+6
* convert some more special methods to use _PyObject_LookupSpecialBenjamin Peterson2009-05-091-3/+15
* lookup __reversed__ correctly as a special methodBenjamin Peterson2009-05-091-0/+3
* Fix an off by one error on negative indexs to __getitem__Gregory P. Smith2009-05-081-0/+11
* PyCode_NewEmpty:Jeffrey Yasskin2009-05-081-1/+15
* fix this testBenjamin Peterson2009-05-081-4/+2
* add _PyObject_LookupSpecial to handle fetching special method lookupBenjamin Peterson2009-05-081-0/+52
* Pre-opened test file needs to be opened in binary mode.R. David Murray2009-05-071-1/+1
* Issue5955: aifc's close method did not close the file it wrapped,R. David Murray2009-05-071-0/+15
* Issue 3739: The unicode-internal encoder now reports the number of *characters*Walter Dörwald2009-05-061-2/+7
* Issue #5920: Changed format.__float__ and complex.__float__ to use a precisio...Eric Smith2009-05-052-0/+57
* #5142: add module skipping feature to pdb.Georg Brandl2009-05-051-0/+99
* #1309567: fix linecache behavior of stripping subdirectories from paths when ...Georg Brandl2009-05-051-0/+129
* Fix issue 5890: (property subclass shadows __doc__ string) by insertingR. David Murray2009-05-041-1/+115
* Issue #4426: The UTF-7 decoder was too strict and didn't accept some legal se...Antoine Pitrou2009-05-041-6/+15
* Issue #4751: For hashlib algorithms provided by OpenSSL, the PythonGregory P. Smith2009-05-041-3/+46
* (no commit message)Michael Foord2009-05-021-37/+197
* Isue #5084: unpickling now interns the attribute names of pickled objects,Antoine Pitrou2009-05-021-0/+14
* Add addCleanup and doCleanups to unittest.TestCase.Michael Foord2009-05-021-2/+106
* #1607951: Make mailbox.Maildir re-read the directories less frequently.Andrew M. Kuchling2009-05-021-0/+31
* Convert test method names to PEP8 style.Gregory P. Smith2009-05-021-46/+47
* remove py3k compat codeBenjamin Peterson2009-05-021-35/+7
* don't let sys.argv be used in the testsBenjamin Peterson2009-05-021-2/+5
* Adds an exit parameter to unittest.main(). If False main no longerMichael Foord2009-05-021-2/+71
* Issue #3002: `shutil.copyfile()` and `shutil.copytree()` now raise anAntoine Pitrou2009-05-011-0/+33
* Adds the ipaddr module to the standard library. Issue #3959.Gregory P. Smith2009-05-011-0/+567
* Make test.test_support.EnvironmentVarGuard behave like a dictionary.Walter Dörwald2009-05-0110-65/+64
* Issue #1588: Add complex.__format__.Eric Smith2009-04-301-1/+60
* make sure to close fileBenjamin Peterson2009-04-301-1/+1
* make sure mode is removable while cleaning up test droppingsBenjamin Peterson2009-04-291-0/+5
* fix test_shutil on ZFS #5676Benjamin Peterson2009-04-291-2/+16
* Backport some of the float formatting tests from py3k.Mark Dickinson2009-04-292-0/+375
* Issue #5864: format(1234.5, '.4') gives misleading resultMark Dickinson2009-04-291-0/+5
* More aifc tests.R. David Murray2009-04-291-7/+53
* Now that we've got a test_aifc, add a few tests.R. David Murray2009-04-291-0/+30
* Fix issue 2245. aifc now skips any chunk type it doesn't actuallyR. David Murray2009-04-293-1/+24