- 5b07ebc Issue 2025: Add tuple.count() and tuple.index() to follow the ABC in collections.Sequence. by Raymond Hettinger · 18 years ago
- 3c3d9ac Revert accidental changes to test_queue in r60605. by Georg Brandl · 18 years ago
- 2fc9263 Issue 1979: Make Decimal comparisons (other than !=, ==) involving NaN by Mark Dickinson · 18 years ago
- 5af2f74 Fixes issue 1959. Converted tests to unittest. Thanks Giampaolo Rodola. by Facundo Batista · 18 years ago
- 45eda64 Sync-up with Py3k work. by Raymond Hettinger · 18 years ago
- b709077 * Use the same code to profile for test_profile and test_cprofile. by Georg Brandl · 18 years ago
- d86c7e5 Actually run the test. by Georg Brandl · 18 years ago
- c2879c7 Issue 1951. Converts wave test cases to unittest. by Facundo Batista · 18 years ago
- 8ada177 Fix unittest conversion breakage. by Georg Brandl · 18 years ago
- 212861c In the experimental 'Scanner' feature, the group count was set wrong. by Guido van Rossum · 18 years ago
- 727a590 Update PEP URL. by Andrew M. Kuchling · 18 years ago
- 2db7cd3 Keep distutils Python 2.1 compatible (or even Python 2.4 in this case). by Marc-André Lemburg · 18 years ago
- 0192e43 Issue #2004: Use mode 0700 for temporary directories and default by Lars Gustäbel · 18 years ago
- 99af7db Change r60575 broke test_compile: by Amaury Forgeot d'Arc · 18 years ago
- 6fd03bb #1750076: Debugger did not step on every iteration of a while statement. by Amaury Forgeot d'Arc · 18 years ago
- f5806ab Small adjustments for test compact freelist test. It's no passing on Windows as well. by Christian Heimes · 18 years ago
- f4033ab Increase debugging to investige failing tests on some build bots by Christian Heimes · 18 years ago
- 422051a Patch #1953 by Christian Heimes · 18 years ago
- a26cf9b Make int() and long() fall back to __trunc__(). See issue 2002. by Jeffrey Yasskin · 18 years ago
- 72a6576 Let test_socketserver pass on win32, which does not have AF_UNIX sockets. by Amaury Forgeot d'Arc · 18 years ago
- 07974d7 Correct test_mailbox on win32: since the test sets a custom 'colon' attribute by Amaury Forgeot d'Arc · 18 years ago
- 3af3ecc Fixed paths to Windows build directories in build_ext.py by Christian Heimes · 18 years ago
- 4b7deed Use context manager for a lock. by Brett Cannon · 18 years ago
- 461ed87 Wait for a delay before reaping children -- this should fix the by Georg Brandl · 18 years ago
- cafb710 Fix a conversion mistake that caused test_queue to fail intermittently. by Georg Brandl · 18 years ago
- 1dabdb2 Make the Rational constructor accept '3.' and '.2' as well as '3.2'. by Mark Dickinson · 18 years ago
- 5a6cfee Rewrite test_cprofile as unittest (and rename the file to be consistent by Georg Brandl · 18 years ago
- d22b466 Rewrite test_queue as unittest. Written for GHOP by Ian Seyer. by Georg Brandl · 18 years ago
- 61fdd71 Rewrite test_socketserver as unittest, written for GHOP by Benjamin Petersen. by Georg Brandl · 18 years ago
- c8088df Rewrite test_funcattrs as unittest, written for GHOP by Jeff Wheeler. by Georg Brandl · 18 years ago
- 4854552 Rewrite test_descr as unittest, written for GHOP by Jeff Wheeler. by Georg Brandl · 18 years ago
- 1aa8a69 Bump distutils version number to match Python version. by Marc-André Lemburg · 18 years ago
- 4cab8ec Test round-trip on float.as_integer_ratio() and float.__truediv__(). by Raymond Hettinger · 18 years ago
- 04c96d5 Issue #1996: float.as_integer_ratio() should return fraction in lowest terms. by Raymond Hettinger · 18 years ago
- dc2964b Roll back r60248. It's useful to encourage users not to change Rational by Jeffrey Yasskin · 18 years ago
- ca2b69f Move __builtins__.trunc() to math.trunc() per by Jeffrey Yasskin · 18 years ago
- 105be77 Issue #1678380. Fix a bug that identifies 0j and -0j when they appear by Mark Dickinson · 18 years ago
- 2df20a3 Minor wordsmithing on docstring by Raymond Hettinger · 18 years ago
- 38db364 Remove unused to-be-magic methods from Rational per issue 1968. Do not port by Jeffrey Yasskin · 18 years ago
- b23dea6 Added more documentation on how mixed-mode arithmetic should be implemented. I by Jeffrey Yasskin · 18 years ago
- e973c61 Missing return by Raymond Hettinger · 18 years ago
- e67420d Fix defect in __ixor__ which would get the wrong by Raymond Hettinger · 18 years ago
- 7d518f4 MutableSets support a remove() method. by Raymond Hettinger · 18 years ago
- abf3fcf Add isdisjoint() to the Set/MutableSet ABCs. by Raymond Hettinger · 18 years ago
- 99120c4 Revert rev. 59925, it breaks comtypes (I need to further examine this). by Thomas Heller · 18 years ago
- 908caac Added clear cache methods to clear the internal type lookup cache for ref leak test runs. by Christian Heimes · 18 years ago
- 3ea7b41 Moved Rational._binary_float_to_ratio() to float.as_integer_ratio() because by Jeffrey Yasskin · 18 years ago
- cf25eb1 socket.error doesn't have a headers attribute like ProtocolError. by Neal Norwitz · 18 years ago
- 5b25bc0 Change isbasestring function as discussed on the cvs list a while ago by Christian Heimes · 18 years ago
- ed444e5 Try to handle socket.errors properly in is_unavailable by Neal Norwitz · 18 years ago
- ce8fd9d Remove effectless expression statement. by Georg Brandl · 18 years ago
- c519809 Update the comment and remove the close. If we close we can't flush anymore. by Neal Norwitz · 18 years ago
- 41ada16 Print periodic "still working" messages since this suite is slow. by Neal Norwitz · 18 years ago
- 183c534 Catch socket errors that are often the cause of transient failures. by Neal Norwitz · 18 years ago
- 9846de1 Retry connection in case it fails to reduce flakiness by Neal Norwitz · 18 years ago
- 041ee5d Add a tiny sleep and additional flush to force the file to really be synced. by Neal Norwitz · 18 years ago
- 63c77b6 Docstring nit by Raymond Hettinger · 18 years ago
- 3e1a373 Make rational.gcd() public and allow Rational to take decimal strings, per by Jeffrey Yasskin · 18 years ago
- 46c61b2 Try to prevent this test from being flaky. We might need a sleep in here by Neal Norwitz · 18 years ago
- 6e07081 Eliminate the sleeps that assume the server will start in .5 seconds. by Neal Norwitz · 18 years ago
- 3d785e2 Consistently use tempfile.tempdir for the db_home directory. by Neal Norwitz · 18 years ago
- 7f47d93 On some systems (e.g., Ubuntu on hppa) the flush() by Neal Norwitz · 18 years ago
- 3718429 Reduce the race condition by signalling when the server is ready by Neal Norwitz · 18 years ago
- a121508 Always try to remove the test file even if close raises an exception by Neal Norwitz · 18 years ago
- a2af212 Unit test fix from Giampaolo Rodola, #1938 by Christian Heimes · 18 years ago
- 0cdf9a3 #1473257: add generator.gi_code attribute that refers to by Georg Brandl · 18 years ago
- 4223199 Add missing things in re docstring. by Georg Brandl · 18 years ago
- 08b50eb The OS X buildbot had errors with the unavailable exceptions disabled. Restore it. by Neal Norwitz · 18 years ago
- 960efe9 Fix exception in tearDown on ppc buildbot. If there's no directory, by Neal Norwitz · 18 years ago
- 653272f Use a condition variable (threading.Event) rather than sleeps and checking a by Neal Norwitz · 18 years ago
- 5be3067 Prevent this test from failing if there are transient network problems by Neal Norwitz · 18 years ago
- 3dbd4c5 Changes 54857 and 54840 broke code and were reverted in Py2.5 just before by Raymond Hettinger · 18 years ago
- 769d0ee Make the test more robust by trying to reconnect up to 3 times by Neal Norwitz · 18 years ago
- 9ec7bc3 More design notes by Raymond Hettinger · 18 years ago
- 9c6d81f Fix-up signature for approximation. by Raymond Hettinger · 18 years ago
- 7ea8225 Add one other review comment. by Raymond Hettinger · 18 years ago
- 921cb5d Mark todos and review comments. by Raymond Hettinger · 18 years ago
- a621674 Add support for copy, deepcopy, and pickle. by Raymond Hettinger · 18 years ago
- 909e334 More code cleanup. Remove unnecessary indirection to useless class methods. by Raymond Hettinger · 18 years ago
- 16570f5 #1920: when considering a block starting by "while 0", the compiler optimized the by Amaury Forgeot d'Arc · 18 years ago
- 5310b69 Shorter pprint's for empty sets and frozensets. Fix indentation of frozensets. Add tests including two complex data structures. by Raymond Hettinger · 18 years ago
- 6170874 Expand tests to include nested graph structures. by Raymond Hettinger · 18 years ago
- 5b0e27e Add support for int(r) just like the other numeric classes. by Raymond Hettinger · 18 years ago
- 5ca9240 Invert the checks in get_[u]long and get_[u]longlong. The intent was by Thomas Heller · 18 years ago
- 5a05364 Add support for trunc(). by Raymond Hettinger · 18 years ago
- 70ec29d Revert 60189 and restore performance. by Raymond Hettinger · 18 years ago
- 7a6eacd Clean-up and speed-up code by accessing numerator/denominator directly. There's no reason to enforce readonliness by Raymond Hettinger · 18 years ago
- 37edeab Fix test67.py from issue #1303614. by Guido van Rossum · 18 years ago
- 4e3f124 Fi debug turd -- a call accidentally left out. by Guido van Rossum · 18 years ago
- 92aa2f8 Added optional delay argument to FileHandler and subclasses. by Vinay Sajip · 18 years ago
- 97ef165 Added optional delay argument to FileHandler and subclasses. by Vinay Sajip · 18 years ago
- 7b7ce78 Fix issue1789: The tutorial contained a misuse of the struct module. by Gregory P. Smith · 18 years ago
- 7070094 Fix the test_urllib2net failures that were caused by r58067. by Neal Norwitz · 18 years ago
- bf839e2 Fix the tests by restoring __import__. I think the test is still valid. by Neal Norwitz · 18 years ago
- f336c8b Cleanup by Raymond Hettinger · 18 years ago
- eb46190 Minor clean-up and more tests. by Raymond Hettinger · 18 years ago
- cf10926 Add first-cut at an approximation function (still needs rounding tweaks). Add continued fraction conversions. by Raymond Hettinger · 18 years ago
- 9acc387 Turn three recently fixed crashers into regular tests. by Guido van Rossum · 18 years ago
- f30ba3d There was an error on exit if no sys.exitfunc was defined. Issue 1647. by Kurt B. Kaiser · 18 years ago
- b4aaa76 Could not open files in .idlerc directory if latter was hidden on Windows. by Kurt B. Kaiser · 18 years ago