summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
...
* Rewrite test_socketserver as unittest, written for GHOP by Benjamin Petersen.Georg Brandl2008-02-021-146/+177
* Rewrite test_funcattrs as unittest, written for GHOP by Jeff Wheeler.Georg Brandl2008-02-021-413/+280
* Rewrite test_descr as unittest, written for GHOP by Jeff Wheeler.Georg Brandl2008-02-021-4494/+4189
* Test round-trip on float.as_integer_ratio() and float.__truediv__().Raymond Hettinger2008-02-011-0/+6
* Issue #1996: float.as_integer_ratio() should return fraction in lowest terms.Raymond Hettinger2008-02-011-0/+8
* Roll back r60248. It's useful to encourage users not to change RationalJeffrey Yasskin2008-02-011-0/+11
* Move __builtins__.trunc() to math.trunc() perJeffrey Yasskin2008-02-015-46/+47
* Issue #1678380. Fix a bug that identifies 0j and -0j when they appearMark Dickinson2008-01-311-0/+7
* Remove unused to-be-magic methods from Rational per issue 1968. Do not portJeffrey Yasskin2008-01-311-15/+0
* Added clear cache methods to clear the internal type lookup cache for ref lea...Christian Heimes2008-01-271-0/+3
* Moved Rational._binary_float_to_ratio() to float.as_integer_ratio() becauseJeffrey Yasskin2008-01-271-1/+20
* socket.error doesn't have a headers attribute like ProtocolError.Neal Norwitz2008-01-271-10/+10
* Try to handle socket.errors properly in is_unavailableNeal Norwitz2008-01-271-3/+7
* Update the comment and remove the close. If we close we can't flush anymore.Neal Norwitz2008-01-271-2/+1
* Print periodic "still working" messages since this suite is slow.Neal Norwitz2008-01-271-0/+26
* Catch socket errors that are often the cause of transient failures.Neal Norwitz2008-01-271-10/+10
* Retry connection in case it fails to reduce flakinessNeal Norwitz2008-01-271-3/+30
* Add a tiny sleep and additional flush to force the file to really be synced.Neal Norwitz2008-01-271-2/+5
* Make rational.gcd() public and allow Rational to take decimal strings, perJeffrey Yasskin2008-01-271-6/+40
* Try to prevent this test from being flaky. We might need a sleep in hereNeal Norwitz2008-01-271-2/+6
* Eliminate the sleeps that assume the server will start in .5 seconds.Neal Norwitz2008-01-271-20/+26
* On some systems (e.g., Ubuntu on hppa) the flush()Neal Norwitz2008-01-261-0/+3
* Reduce the race condition by signalling when the server is readyNeal Norwitz2008-01-261-0/+3
* Always try to remove the test file even if close raises an exceptionNeal Norwitz2008-01-261-2/+1
* Unit test fix from Giampaolo Rodola, #1938Christian Heimes2008-01-261-0/+1
* #1473257: add generator.gi_code attribute that refers toGeorg Brandl2008-01-261-1/+19
* The OS X buildbot had errors with the unavailable exceptions disabled. Resto...Neal Norwitz2008-01-261-8/+2
* Use a condition variable (threading.Event) rather than sleeps and checking aNeal Norwitz2008-01-261-14/+19
* Prevent this test from failing if there are transient network problemsNeal Norwitz2008-01-261-10/+30
* Changes 54857 and 54840 broke code and were reverted in Py2.5 just beforeRaymond Hettinger2008-01-251-8/+0
* Make the test more robust by trying to reconnect up to 3 timesNeal Norwitz2008-01-251-19/+35
* Fix-up signature for approximation.Raymond Hettinger2008-01-251-4/+4
* Add support for copy, deepcopy, and pickle.Raymond Hettinger2008-01-251-0/+8
* #1920: when considering a block starting by "while 0", the compiler optimized...Amaury Forgeot d'Arc2008-01-241-0/+9
* Shorter pprint's for empty sets and frozensets. Fix indentation of frozenset...Raymond Hettinger2008-01-241-0/+192
* Expand tests to include nested graph structures.Raymond Hettinger2008-01-241-0/+106
* Add support for int(r) just like the other numeric classes.Raymond Hettinger2008-01-241-0/+1
* Add support for trunc().Raymond Hettinger2008-01-241-0/+11
* Fix test67.py from issue #1303614.Guido van Rossum2008-01-242-21/+24
* Fi debug turd -- a call accidentally left out.Guido van Rossum2008-01-241-1/+1
* Fix issue1789: The tutorial contained a misuse of the struct module.Gregory P. Smith2008-01-241-1/+1
* Fix the tests by restoring __import__. I think the test is still valid.Neal Norwitz2008-01-241-4/+6
* Minor clean-up and more tests.Raymond Hettinger2008-01-241-0/+11
* Add first-cut at an approximation function (still needs rounding tweaks). Ad...Raymond Hettinger2008-01-241-0/+12
* Turn three recently fixed crashers into regular tests.Guido van Rossum2008-01-231-1/+70
* Fix two crashers.Guido van Rossum2008-01-232-42/+0
* I'm tired of these tests breaking at Google due to our large number ofGuido van Rossum2008-01-232-0/+6
* Fix for #1087741 patch.Georg Brandl2008-01-221-0/+7
* - Fix Issue #1703448: A joined thread could show up in theGregory P. Smith2008-01-221-0/+18
* Reformat some ugly code.Georg Brandl2008-01-211-26/+27