1. 212861c In the experimental 'Scanner' feature, the group count was set wrong. by Guido van Rossum · 18 years ago
  2. 727a590 Update PEP URL. by Andrew M. Kuchling · 18 years ago
  3. 2db7cd3 Keep distutils Python 2.1 compatible (or even Python 2.4 in this case). by Marc-André Lemburg · 18 years ago
  4. 0192e43 Issue #2004: Use mode 0700 for temporary directories and default by Lars Gustäbel · 18 years ago
  5. 99af7db Change r60575 broke test_compile: by Amaury Forgeot d'Arc · 18 years ago
  6. 6fd03bb #1750076: Debugger did not step on every iteration of a while statement. by Amaury Forgeot d'Arc · 18 years ago
  7. f5806ab Small adjustments for test compact freelist test. It's no passing on Windows as well. by Christian Heimes · 18 years ago
  8. f4033ab Increase debugging to investige failing tests on some build bots by Christian Heimes · 18 years ago
  9. 422051a Patch #1953 by Christian Heimes · 18 years ago
  10. a26cf9b Make int() and long() fall back to __trunc__(). See issue 2002. by Jeffrey Yasskin · 18 years ago
  11. 72a6576 Let test_socketserver pass on win32, which does not have AF_UNIX sockets. by Amaury Forgeot d'Arc · 18 years ago
  12. 07974d7 Correct test_mailbox on win32: since the test sets a custom 'colon' attribute by Amaury Forgeot d'Arc · 18 years ago
  13. 3af3ecc Fixed paths to Windows build directories in build_ext.py by Christian Heimes · 18 years ago
  14. 4b7deed Use context manager for a lock. by Brett Cannon · 18 years ago
  15. 461ed87 Wait for a delay before reaping children -- this should fix the by Georg Brandl · 18 years ago
  16. cafb710 Fix a conversion mistake that caused test_queue to fail intermittently. by Georg Brandl · 18 years ago
  17. 1dabdb2 Make the Rational constructor accept '3.' and '.2' as well as '3.2'. by Mark Dickinson · 18 years ago
  18. 5a6cfee Rewrite test_cprofile as unittest (and rename the file to be consistent by Georg Brandl · 18 years ago
  19. d22b466 Rewrite test_queue as unittest. Written for GHOP by Ian Seyer. by Georg Brandl · 18 years ago
  20. 61fdd71 Rewrite test_socketserver as unittest, written for GHOP by Benjamin Petersen. by Georg Brandl · 18 years ago
  21. c8088df Rewrite test_funcattrs as unittest, written for GHOP by Jeff Wheeler. by Georg Brandl · 18 years ago
  22. 4854552 Rewrite test_descr as unittest, written for GHOP by Jeff Wheeler. by Georg Brandl · 18 years ago
  23. 1aa8a69 Bump distutils version number to match Python version. by Marc-André Lemburg · 18 years ago
  24. 4cab8ec Test round-trip on float.as_integer_ratio() and float.__truediv__(). by Raymond Hettinger · 18 years ago
  25. 04c96d5 Issue #1996: float.as_integer_ratio() should return fraction in lowest terms. by Raymond Hettinger · 18 years ago
  26. dc2964b Roll back r60248. It's useful to encourage users not to change Rational by Jeffrey Yasskin · 18 years ago
  27. ca2b69f Move __builtins__.trunc() to math.trunc() per by Jeffrey Yasskin · 18 years ago
  28. 105be77 Issue #1678380. Fix a bug that identifies 0j and -0j when they appear by Mark Dickinson · 18 years ago
  29. 2df20a3 Minor wordsmithing on docstring by Raymond Hettinger · 18 years ago
  30. 38db364 Remove unused to-be-magic methods from Rational per issue 1968. Do not port by Jeffrey Yasskin · 18 years ago
  31. b23dea6 Added more documentation on how mixed-mode arithmetic should be implemented. I by Jeffrey Yasskin · 18 years ago
  32. e973c61 Missing return by Raymond Hettinger · 18 years ago
  33. e67420d Fix defect in __ixor__ which would get the wrong by Raymond Hettinger · 18 years ago
  34. 7d518f4 MutableSets support a remove() method. by Raymond Hettinger · 18 years ago
  35. abf3fcf Add isdisjoint() to the Set/MutableSet ABCs. by Raymond Hettinger · 18 years ago
  36. 99120c4 Revert rev. 59925, it breaks comtypes (I need to further examine this). by Thomas Heller · 18 years ago
  37. 908caac Added clear cache methods to clear the internal type lookup cache for ref leak test runs. by Christian Heimes · 18 years ago
  38. 3ea7b41 Moved Rational._binary_float_to_ratio() to float.as_integer_ratio() because by Jeffrey Yasskin · 18 years ago
  39. cf25eb1 socket.error doesn't have a headers attribute like ProtocolError. by Neal Norwitz · 18 years ago
  40. 5b25bc0 Change isbasestring function as discussed on the cvs list a while ago by Christian Heimes · 18 years ago
  41. ed444e5 Try to handle socket.errors properly in is_unavailable by Neal Norwitz · 18 years ago
  42. ce8fd9d Remove effectless expression statement. by Georg Brandl · 18 years ago
  43. c519809 Update the comment and remove the close. If we close we can't flush anymore. by Neal Norwitz · 18 years ago
  44. 41ada16 Print periodic "still working" messages since this suite is slow. by Neal Norwitz · 18 years ago
  45. 183c534 Catch socket errors that are often the cause of transient failures. by Neal Norwitz · 18 years ago
  46. 9846de1 Retry connection in case it fails to reduce flakiness by Neal Norwitz · 18 years ago
  47. 041ee5d Add a tiny sleep and additional flush to force the file to really be synced. by Neal Norwitz · 18 years ago
  48. 63c77b6 Docstring nit by Raymond Hettinger · 18 years ago
  49. 3e1a373 Make rational.gcd() public and allow Rational to take decimal strings, per by Jeffrey Yasskin · 18 years ago
  50. 46c61b2 Try to prevent this test from being flaky. We might need a sleep in here by Neal Norwitz · 18 years ago
  51. 6e07081 Eliminate the sleeps that assume the server will start in .5 seconds. by Neal Norwitz · 18 years ago
  52. 3d785e2 Consistently use tempfile.tempdir for the db_home directory. by Neal Norwitz · 18 years ago
  53. 7f47d93 On some systems (e.g., Ubuntu on hppa) the flush() by Neal Norwitz · 18 years ago
  54. 3718429 Reduce the race condition by signalling when the server is ready by Neal Norwitz · 18 years ago
  55. a121508 Always try to remove the test file even if close raises an exception by Neal Norwitz · 18 years ago
  56. a2af212 Unit test fix from Giampaolo Rodola, #1938 by Christian Heimes · 18 years ago
  57. 0cdf9a3 #1473257: add generator.gi_code attribute that refers to by Georg Brandl · 18 years ago
  58. 4223199 Add missing things in re docstring. by Georg Brandl · 18 years ago
  59. 08b50eb The OS X buildbot had errors with the unavailable exceptions disabled. Restore it. by Neal Norwitz · 18 years ago
  60. 960efe9 Fix exception in tearDown on ppc buildbot. If there's no directory, by Neal Norwitz · 18 years ago
  61. 653272f Use a condition variable (threading.Event) rather than sleeps and checking a by Neal Norwitz · 18 years ago
  62. 5be3067 Prevent this test from failing if there are transient network problems by Neal Norwitz · 18 years ago
  63. 3dbd4c5 Changes 54857 and 54840 broke code and were reverted in Py2.5 just before by Raymond Hettinger · 18 years ago
  64. 769d0ee Make the test more robust by trying to reconnect up to 3 times by Neal Norwitz · 18 years ago
  65. 9ec7bc3 More design notes by Raymond Hettinger · 18 years ago
  66. 9c6d81f Fix-up signature for approximation. by Raymond Hettinger · 18 years ago
  67. 7ea8225 Add one other review comment. by Raymond Hettinger · 18 years ago
  68. 921cb5d Mark todos and review comments. by Raymond Hettinger · 18 years ago
  69. a621674 Add support for copy, deepcopy, and pickle. by Raymond Hettinger · 18 years ago
  70. 909e334 More code cleanup. Remove unnecessary indirection to useless class methods. by Raymond Hettinger · 18 years ago
  71. 16570f5 #1920: when considering a block starting by "while 0", the compiler optimized the by Amaury Forgeot d'Arc · 18 years ago
  72. 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
  73. 6170874 Expand tests to include nested graph structures. by Raymond Hettinger · 18 years ago
  74. 5b0e27e Add support for int(r) just like the other numeric classes. by Raymond Hettinger · 18 years ago
  75. 5ca9240 Invert the checks in get_[u]long and get_[u]longlong. The intent was by Thomas Heller · 18 years ago
  76. 5a05364 Add support for trunc(). by Raymond Hettinger · 18 years ago
  77. 70ec29d Revert 60189 and restore performance. by Raymond Hettinger · 18 years ago
  78. 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
  79. 37edeab Fix test67.py from issue #1303614. by Guido van Rossum · 18 years ago
  80. 4e3f124 Fi debug turd -- a call accidentally left out. by Guido van Rossum · 18 years ago
  81. 92aa2f8 Added optional delay argument to FileHandler and subclasses. by Vinay Sajip · 18 years ago
  82. 97ef165 Added optional delay argument to FileHandler and subclasses. by Vinay Sajip · 18 years ago
  83. 7b7ce78 Fix issue1789: The tutorial contained a misuse of the struct module. by Gregory P. Smith · 18 years ago
  84. 7070094 Fix the test_urllib2net failures that were caused by r58067. by Neal Norwitz · 18 years ago
  85. bf839e2 Fix the tests by restoring __import__. I think the test is still valid. by Neal Norwitz · 18 years ago
  86. f336c8b Cleanup by Raymond Hettinger · 18 years ago
  87. eb46190 Minor clean-up and more tests. by Raymond Hettinger · 18 years ago
  88. cf10926 Add first-cut at an approximation function (still needs rounding tweaks). Add continued fraction conversions. by Raymond Hettinger · 18 years ago
  89. 9acc387 Turn three recently fixed crashers into regular tests. by Guido van Rossum · 18 years ago
  90. f30ba3d There was an error on exit if no sys.exitfunc was defined. Issue 1647. by Kurt B. Kaiser · 18 years ago
  91. b4aaa76 Could not open files in .idlerc directory if latter was hidden on Windows. by Kurt B. Kaiser · 18 years ago
  92. 1d9a9ea Fix two crashers. by Guido van Rossum · 18 years ago
  93. 082c9b0 Fixed bug #1915: Python compiles with --enable-unicode=no again. However several extension methods and modules do not work without unicode support. by Christian Heimes · 18 years ago
  94. 66b4ab7 I'm tired of these tests breaking at Google due to our large number of by Guido van Rossum · 18 years ago
  95. c226c31 Let pprint() support sets and frozensets (suggested by David Mertz). by Raymond Hettinger · 18 years ago
  96. 2230bcf docstring and comment updates suggested by Giampaolo Rodola' by Gregory P. Smith · 18 years ago
  97. d02fc48 Fix for #1087741 patch. by Georg Brandl · 18 years ago
  98. 95cd5c0 - Fix Issue #1703448: A joined thread could show up in the by Gregory P. Smith · 18 years ago
  99. 64c5677 Replace spam.acquire() try: ... finally: spam.release() with "with spam:" by Gregory P. Smith · 18 years ago
  100. c64386b accepts and closes issue #1221598: adds an optional callback to ftplib.FTP by Gregory P. Smith · 18 years ago