1. 4854552 Rewrite test_descr as unittest, written for GHOP by Jeff Wheeler. by Georg Brandl · 18 years ago
  2. 4cab8ec Test round-trip on float.as_integer_ratio() and float.__truediv__(). by Raymond Hettinger · 18 years ago
  3. 04c96d5 Issue #1996: float.as_integer_ratio() should return fraction in lowest terms. by Raymond Hettinger · 18 years ago
  4. dc2964b Roll back r60248. It's useful to encourage users not to change Rational by Jeffrey Yasskin · 18 years ago
  5. ca2b69f Move __builtins__.trunc() to math.trunc() per by Jeffrey Yasskin · 18 years ago
  6. 105be77 Issue #1678380. Fix a bug that identifies 0j and -0j when they appear by Mark Dickinson · 18 years ago
  7. 38db364 Remove unused to-be-magic methods from Rational per issue 1968. Do not port by Jeffrey Yasskin · 18 years ago
  8. 908caac Added clear cache methods to clear the internal type lookup cache for ref leak test runs. by Christian Heimes · 18 years ago
  9. 3ea7b41 Moved Rational._binary_float_to_ratio() to float.as_integer_ratio() because by Jeffrey Yasskin · 18 years ago
  10. cf25eb1 socket.error doesn't have a headers attribute like ProtocolError. by Neal Norwitz · 18 years ago
  11. ed444e5 Try to handle socket.errors properly in is_unavailable by Neal Norwitz · 18 years ago
  12. c519809 Update the comment and remove the close. If we close we can't flush anymore. by Neal Norwitz · 18 years ago
  13. 41ada16 Print periodic "still working" messages since this suite is slow. by Neal Norwitz · 18 years ago
  14. 183c534 Catch socket errors that are often the cause of transient failures. by Neal Norwitz · 18 years ago
  15. 9846de1 Retry connection in case it fails to reduce flakiness by Neal Norwitz · 18 years ago
  16. 041ee5d Add a tiny sleep and additional flush to force the file to really be synced. by Neal Norwitz · 18 years ago
  17. 3e1a373 Make rational.gcd() public and allow Rational to take decimal strings, per by Jeffrey Yasskin · 18 years ago
  18. 46c61b2 Try to prevent this test from being flaky. We might need a sleep in here by Neal Norwitz · 18 years ago
  19. 6e07081 Eliminate the sleeps that assume the server will start in .5 seconds. by Neal Norwitz · 18 years ago
  20. 7f47d93 On some systems (e.g., Ubuntu on hppa) the flush() by Neal Norwitz · 18 years ago
  21. 3718429 Reduce the race condition by signalling when the server is ready by Neal Norwitz · 18 years ago
  22. a121508 Always try to remove the test file even if close raises an exception by Neal Norwitz · 18 years ago
  23. a2af212 Unit test fix from Giampaolo Rodola, #1938 by Christian Heimes · 18 years ago
  24. 0cdf9a3 #1473257: add generator.gi_code attribute that refers to by Georg Brandl · 18 years ago
  25. 08b50eb The OS X buildbot had errors with the unavailable exceptions disabled. Restore it. by Neal Norwitz · 18 years ago
  26. 653272f Use a condition variable (threading.Event) rather than sleeps and checking a by Neal Norwitz · 18 years ago
  27. 5be3067 Prevent this test from failing if there are transient network problems by Neal Norwitz · 18 years ago
  28. 3dbd4c5 Changes 54857 and 54840 broke code and were reverted in Py2.5 just before by Raymond Hettinger · 18 years ago
  29. 769d0ee Make the test more robust by trying to reconnect up to 3 times by Neal Norwitz · 18 years ago
  30. 9c6d81f Fix-up signature for approximation. by Raymond Hettinger · 18 years ago
  31. a621674 Add support for copy, deepcopy, and pickle. by Raymond Hettinger · 18 years ago
  32. 16570f5 #1920: when considering a block starting by "while 0", the compiler optimized the by Amaury Forgeot d'Arc · 18 years ago
  33. 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
  34. 6170874 Expand tests to include nested graph structures. by Raymond Hettinger · 18 years ago
  35. 5b0e27e Add support for int(r) just like the other numeric classes. by Raymond Hettinger · 18 years ago
  36. 5a05364 Add support for trunc(). by Raymond Hettinger · 18 years ago
  37. 37edeab Fix test67.py from issue #1303614. by Guido van Rossum · 18 years ago
  38. 4e3f124 Fi debug turd -- a call accidentally left out. by Guido van Rossum · 18 years ago
  39. 7b7ce78 Fix issue1789: The tutorial contained a misuse of the struct module. by Gregory P. Smith · 18 years ago
  40. bf839e2 Fix the tests by restoring __import__. I think the test is still valid. by Neal Norwitz · 18 years ago
  41. eb46190 Minor clean-up and more tests. by Raymond Hettinger · 18 years ago
  42. cf10926 Add first-cut at an approximation function (still needs rounding tweaks). Add continued fraction conversions. by Raymond Hettinger · 18 years ago
  43. 9acc387 Turn three recently fixed crashers into regular tests. by Guido van Rossum · 18 years ago
  44. 1d9a9ea Fix two crashers. by Guido van Rossum · 18 years ago
  45. 66b4ab7 I'm tired of these tests breaking at Google due to our large number of by Guido van Rossum · 18 years ago
  46. d02fc48 Fix for #1087741 patch. by Georg Brandl · 18 years ago
  47. 95cd5c0 - Fix Issue #1703448: A joined thread could show up in the by Gregory P. Smith · 18 years ago
  48. c09b94e Reformat some ugly code. by Georg Brandl · 18 years ago
  49. 32a3fb5 Patch #1720595: add T_BOOL to the range of structmember types. by Georg Brandl · 18 years ago
  50. f2dae0e #1715: include sub-extension modules in pydoc text output. by Georg Brandl · 18 years ago
  51. 38d1715 Issue #1882: when compiling code from a string, encoding cookies in the by Georg Brandl · 18 years ago
  52. 66e7363 #1269: fix a bug in pstats.add_callers() and add a unit test file for pstats. by Georg Brandl · 18 years ago
  53. 6f7e2d0 #1876: fix typos in test_operator. by Georg Brandl · 18 years ago
  54. 8584932 Fix test_pyclbr after urllib change. by Georg Brandl · 18 years ago
  55. 5235398 #1669: don't allow shutil.rmtree() to be called on a symlink. by Georg Brandl · 18 years ago
  56. 5611289 #1648: add sys.gettrace() and sys.getprofile(). by Georg Brandl · 18 years ago
  57. 9b0d46d #1178141: add addinfourl.code to get http status code from urllib. by Georg Brandl · 18 years ago
  58. 0c63fc2 Fix zipfile decryption. The check for validity only worked on one by Gregory P. Smith · 18 years ago
  59. 88fbcf8 Add an interactive test script for exercising curses by Andrew M. Kuchling · 18 years ago
  60. 70eb2f9 Fix issue 1300: Quote command line arguments that contain a '|' character in by Gregory P. Smith · 18 years ago
  61. e047e6d fix comment typos, use not arg instead of arg == "", add test coverage by Gregory P. Smith · 18 years ago
  62. 309501a #1663329: add os.closerange() to close a range of fds, by Georg Brandl · 18 years ago
  63. 15ce880 Bug 1277: make Maildir use the user-provided factory instead of hard-wiring MaildirMessage. by Andrew M. Kuchling · 18 years ago
  64. c6fde72 Fix #1146: TextWrap vs words 1-character shorter than the width. by Georg Brandl · 18 years ago
  65. 14404b6 Fix #1679: "0x" was taken as a valid integer literal. by Georg Brandl · 18 years ago
  66. 5c60bfc Patch #976880: add mmap .rfind() method, and 'end' paramter to .find(). by Andrew M. Kuchling · 18 years ago
  67. 6c29be5 Disabled test_xmlrpc:test_404. It's causing lots of false alarms. by Christian Heimes · 18 years ago
  68. 95016e7 Update for threading.local test. by Christian Heimes · 18 years ago
  69. 71a0451 Added unit test to verify that threading.local doesn't cause ref leaks. It seems that the thread local storage always keeps the storage of the last stopped thread alive. Can anybody comment on it, please? by Christian Heimes · 18 years ago
  70. 45169fb Several tweaks: add construction from strings and .from_decimal(), change by Jeffrey Yasskin · 18 years ago
  71. bf4c7c8 This got fixed for classic classes in r60057, and backported to 2.5.2 in 60056. by Guido van Rossum · 18 years ago
  72. 288e89a Added bytes and b'' as aliases for str and '' by Christian Heimes · 18 years ago
  73. 4731709 Make starmap() match its pure python definition and accept any itertable input (not just tuples). by Raymond Hettinger · 18 years ago
  74. 9e1bc98 Add queues will alternative fetch orders (priority based and stack based). by Raymond Hettinger · 18 years ago
  75. d7b0033 Add rational.Rational as an implementation of numbers.Rational with infinite by Jeffrey Yasskin · 18 years ago
  76. cbf8f6c Temporarily revert 59967 until GC can be added. by Raymond Hettinger · 18 years ago
  77. c216df9 Issue 1820: structseq objects did not work with the % formatting operator or isinstance(t, tuple). by Raymond Hettinger · 18 years ago
  78. 7ce9b18 Typo fixes by Andrew M. Kuchling · 18 years ago
  79. c94e2b5 Now that I've learnt about structseq objects I felt like converting sys.float_info to a structseq. It's by Christian Heimes · 18 years ago
  80. f31b69f Applied patch #1816: sys.flags patch by Christian Heimes · 18 years ago
  81. 9c20196 Added new an better structseq representation. E.g. repr(time.gmtime(0)) now returns 'time.struct_time(tm_year=1970, tm_mon=1, tm_mday=1, tm_hour=0, tm_min=0, tm_sec=0, tm_wday=3, tm_yday=1, tm_isdst=0)' instead of '(1970, 1, 1, 0, 0, 0, 3, 1, 0)'. The feature is part of #1816: sys.flags by Christian Heimes · 18 years ago
  82. 59bc20b Issue 1780: Allow leading and trailing whitespace in Decimal constructor, by Mark Dickinson · 18 years ago
  83. fff4e6e Doctest results return a named tuple for readability by Raymond Hettinger · 18 years ago
  84. d1ef854 Run doctests on the collections module by Raymond Hettinger · 18 years ago
  85. d08a8eb Closing issue1761. by Amaury Forgeot d'Arc · 18 years ago
  86. 3403f15 Fixed #1776. __import__() no longer imports modules by file name by Christian Heimes · 18 years ago
  87. b39a756 Added __enter__ and __exit__ functions to HKEY object by Christian Heimes · 18 years ago
  88. e0a49b6 Patch 1137: allow assigning to .buffer_size attribute of PyExpat.parser objects by Andrew M. Kuchling · 18 years ago
  89. 52b2579 Issue #1757: The hash of a Decimal instance is no longer affected by Facundo Batista · 18 years ago
  90. f66f95d It's verbose, not debug by Christian Heimes · 18 years ago
  91. 4d7e670 Fixed indention problem that caused the second TIPC test to run on systems without TIPC by Christian Heimes · 18 years ago
  92. 62416bc #467924, patch by Alan McIntyre: Add ZipFile.extract and ZipFile.extractall. by Georg Brandl · 18 years ago
  93. fb2d25a Issue #1646: Make socket support TIPC. The socket module now has support by Christian Heimes · 18 years ago
  94. fd1c245 Fix issue 1747: allow classic classes to be checked for being subclasses of by Jeffrey Yasskin · 18 years ago
  95. e260ba2 #1325: Add docs and tests for zipimporter.archive and zipimporter.prefix. by Georg Brandl · 18 years ago
  96. 183a084 #1742: don't raise exception on os.path.relpath("a", "a"), but return os.curdir. by Georg Brandl · 18 years ago
  97. c6a04c2 Patch #1637: fix urlparse for URLs like 'http://x.com?arg=/foo'. by Guido van Rossum · 18 years ago
  98. f725b95 Doc patch #1730 from Robin Stocker; minor corrections mostly to os.rst. by Georg Brandl · 18 years ago
  99. 0589914 Fix comment typo by Andrew M. Kuchling · 18 years ago
  100. 9871d8f Continue rolling back pep-3141 changes that changed behavior from 2.5. This by Jeffrey Yasskin · 18 years ago