1. 9acc387 Turn three recently fixed crashers into regular tests. by Guido van Rossum · 18 years ago
  2. 1d9a9ea Fix two crashers. by Guido van Rossum · 18 years ago
  3. 66b4ab7 I'm tired of these tests breaking at Google due to our large number of by Guido van Rossum · 18 years ago
  4. d02fc48 Fix for #1087741 patch. by Georg Brandl · 18 years ago
  5. 95cd5c0 - Fix Issue #1703448: A joined thread could show up in the by Gregory P. Smith · 18 years ago
  6. c09b94e Reformat some ugly code. by Georg Brandl · 18 years ago
  7. 32a3fb5 Patch #1720595: add T_BOOL to the range of structmember types. by Georg Brandl · 18 years ago
  8. f2dae0e #1715: include sub-extension modules in pydoc text output. by Georg Brandl · 18 years ago
  9. 38d1715 Issue #1882: when compiling code from a string, encoding cookies in the by Georg Brandl · 18 years ago
  10. 66e7363 #1269: fix a bug in pstats.add_callers() and add a unit test file for pstats. by Georg Brandl · 18 years ago
  11. 6f7e2d0 #1876: fix typos in test_operator. by Georg Brandl · 18 years ago
  12. 8584932 Fix test_pyclbr after urllib change. by Georg Brandl · 18 years ago
  13. 5235398 #1669: don't allow shutil.rmtree() to be called on a symlink. by Georg Brandl · 18 years ago
  14. 5611289 #1648: add sys.gettrace() and sys.getprofile(). by Georg Brandl · 18 years ago
  15. 9b0d46d #1178141: add addinfourl.code to get http status code from urllib. by Georg Brandl · 18 years ago
  16. 0c63fc2 Fix zipfile decryption. The check for validity only worked on one by Gregory P. Smith · 18 years ago
  17. 88fbcf8 Add an interactive test script for exercising curses by Andrew M. Kuchling · 18 years ago
  18. 70eb2f9 Fix issue 1300: Quote command line arguments that contain a '|' character in by Gregory P. Smith · 18 years ago
  19. e047e6d fix comment typos, use not arg instead of arg == "", add test coverage by Gregory P. Smith · 18 years ago
  20. 309501a #1663329: add os.closerange() to close a range of fds, by Georg Brandl · 18 years ago
  21. 15ce880 Bug 1277: make Maildir use the user-provided factory instead of hard-wiring MaildirMessage. by Andrew M. Kuchling · 18 years ago
  22. c6fde72 Fix #1146: TextWrap vs words 1-character shorter than the width. by Georg Brandl · 18 years ago
  23. 14404b6 Fix #1679: "0x" was taken as a valid integer literal. by Georg Brandl · 18 years ago
  24. 5c60bfc Patch #976880: add mmap .rfind() method, and 'end' paramter to .find(). by Andrew M. Kuchling · 18 years ago
  25. 6c29be5 Disabled test_xmlrpc:test_404. It's causing lots of false alarms. by Christian Heimes · 18 years ago
  26. 95016e7 Update for threading.local test. by Christian Heimes · 18 years ago
  27. 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
  28. 45169fb Several tweaks: add construction from strings and .from_decimal(), change by Jeffrey Yasskin · 18 years ago
  29. bf4c7c8 This got fixed for classic classes in r60057, and backported to 2.5.2 in 60056. by Guido van Rossum · 18 years ago
  30. 288e89a Added bytes and b'' as aliases for str and '' by Christian Heimes · 18 years ago
  31. 4731709 Make starmap() match its pure python definition and accept any itertable input (not just tuples). by Raymond Hettinger · 18 years ago
  32. 9e1bc98 Add queues will alternative fetch orders (priority based and stack based). by Raymond Hettinger · 18 years ago
  33. d7b0033 Add rational.Rational as an implementation of numbers.Rational with infinite by Jeffrey Yasskin · 18 years ago
  34. cbf8f6c Temporarily revert 59967 until GC can be added. by Raymond Hettinger · 18 years ago
  35. c216df9 Issue 1820: structseq objects did not work with the % formatting operator or isinstance(t, tuple). by Raymond Hettinger · 18 years ago
  36. 7ce9b18 Typo fixes by Andrew M. Kuchling · 18 years ago
  37. 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
  38. f31b69f Applied patch #1816: sys.flags patch by Christian Heimes · 18 years ago
  39. 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
  40. 59bc20b Issue 1780: Allow leading and trailing whitespace in Decimal constructor, by Mark Dickinson · 18 years ago
  41. fff4e6e Doctest results return a named tuple for readability by Raymond Hettinger · 18 years ago
  42. d1ef854 Run doctests on the collections module by Raymond Hettinger · 18 years ago
  43. d08a8eb Closing issue1761. by Amaury Forgeot d'Arc · 18 years ago
  44. 3403f15 Fixed #1776. __import__() no longer imports modules by file name by Christian Heimes · 18 years ago
  45. b39a756 Added __enter__ and __exit__ functions to HKEY object by Christian Heimes · 18 years ago
  46. e0a49b6 Patch 1137: allow assigning to .buffer_size attribute of PyExpat.parser objects by Andrew M. Kuchling · 18 years ago
  47. 52b2579 Issue #1757: The hash of a Decimal instance is no longer affected by Facundo Batista · 18 years ago
  48. f66f95d It's verbose, not debug by Christian Heimes · 18 years ago
  49. 4d7e670 Fixed indention problem that caused the second TIPC test to run on systems without TIPC by Christian Heimes · 18 years ago
  50. 62416bc #467924, patch by Alan McIntyre: Add ZipFile.extract and ZipFile.extractall. by Georg Brandl · 18 years ago
  51. fb2d25a Issue #1646: Make socket support TIPC. The socket module now has support by Christian Heimes · 18 years ago
  52. fd1c245 Fix issue 1747: allow classic classes to be checked for being subclasses of by Jeffrey Yasskin · 18 years ago
  53. e260ba2 #1325: Add docs and tests for zipimporter.archive and zipimporter.prefix. by Georg Brandl · 18 years ago
  54. 183a084 #1742: don't raise exception on os.path.relpath("a", "a"), but return os.curdir. by Georg Brandl · 18 years ago
  55. c6a04c2 Patch #1637: fix urlparse for URLs like 'http://x.com?arg=/foo'. by Guido van Rossum · 18 years ago
  56. f725b95 Doc patch #1730 from Robin Stocker; minor corrections mostly to os.rst. by Georg Brandl · 18 years ago
  57. 0589914 Fix comment typo by Andrew M. Kuchling · 18 years ago
  58. 9871d8f Continue rolling back pep-3141 changes that changed behavior from 2.5. This by Jeffrey Yasskin · 18 years ago
  59. f7476c4 clean up a comment by Fred Drake · 18 years ago
  60. 1b50fd7 Add error-checking to namedtuple's _replace() method. by Raymond Hettinger · 18 years ago
  61. 02740f7 Improve namedtuple's _cast() method with a docstring, new name, and error-checking. by Raymond Hettinger · 18 years ago
  62. ced4eb0 Patch #1698 by Senthil: allow '@' in username when parsed by urlparse.py. by Guido van Rossum · 18 years ago
  63. 3b83549 Patch #1725 by Mark Dickinson, fixes incorrect conversion of -1e1000 by Guido van Rossum · 18 years ago
  64. a47b75b socket.ioctl is only available on Windows by Christian Heimes · 18 years ago
  65. 2ee1c76 Issue #1735: TarFile.extractall() now correctly sets by Lars Gustäbel · 18 years ago
  66. 737c73f Make math.{floor,ceil}({int,long}) return float again for backwards by Jeffrey Yasskin · 18 years ago
  67. e0734e7 Minor fix-ups to named tuples: by Raymond Hettinger · 18 years ago
  68. 76d19f6 Added _struct._clearcache() for regression tests by Christian Heimes · 18 years ago
  69. f2f41eb Fixed refleak tests for _struct changes by Christian Heimes · 18 years ago
  70. 8267d1d Bug #1481296: Fixed long(float('nan'))!=0L. by Christian Heimes · 18 years ago
  71. eebb79c Added copysign(x, y) function to the math module by Christian Heimes · 18 years ago
  72. e2ca424 Added math.isinf() and math.isnan() by Christian Heimes · 18 years ago
  73. ae04c33 Issue #1700, reported by Nguyen Quan Son, fix by Fredruk Lundh: by Guido van Rossum · 18 years ago
  74. 2f3c16b Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (just by Jeffrey Yasskin · 18 years ago
  75. 0a11232 Change docstrings to comments so test output will display normally. by Kurt B. Kaiser · 18 years ago
  76. 0f7c25d Issue1177 by Kurt B. Kaiser · 18 years ago
  77. a6e515b Remove a straggling debugging print line. by Brett Cannon · 18 years ago
  78. 4e438bc Actually execute the tests for the getter/setter/deleter tests on properties. by Brett Cannon · 18 years ago
  79. e9a0e88 Patch #1672 by Joseph Armbruster. Use tempdir() to get a temporary directory. by Guido van Rossum · 18 years ago
  80. 905c31c Add tests for the warnings module; specifically formatwarning and showwarning. by Brett Cannon · 18 years ago
  81. 0b7b6fd Patch #1549 by Thomas Herve. by Guido van Rossum · 18 years ago
  82. 02de897 Patch #1583 by Adam Olsen. by Guido van Rossum · 18 years ago
  83. 80016c9 Fix issue 1661: Flags argument silently ignored in re functions with compiled regexes. by Raymond Hettinger · 18 years ago
  84. 3b63556 Beef-up tests for dict literals by Raymond Hettinger · 18 years ago
  85. 85dfcf3 Users demand iterable input for named tuples. The author capitulates. by Raymond Hettinger · 18 years ago
  86. 0a8143f Applied patch #1635: Float patch for inf and nan on Windows (and other platforms). by Christian Heimes · 18 years ago
  87. 88880b2 Add more namedtuple() test cases. Neaten the code and comments. by Raymond Hettinger · 18 years ago
  88. 17b52af Fixed #1624: Remove output comparison for test_pep277 by Christian Heimes · 18 years ago
  89. 42da874 Cleaner method naming convention by Raymond Hettinger · 18 years ago
  90. 90e10e7 Fixed bug #1620: New @spam.getter property syntax modifies the property in place. by Christian Heimes · 18 years ago
  91. 2f9ca29 Fix issue #1313119: urlparse "caches" parses regardless of encoding by Alexandre Vassalotti · 18 years ago
  92. adf9ffd Fix bug 1604. deque.__init__() did not clear existing contents like list.__init__. Not a backport candidate. by Raymond Hettinger · 18 years ago
  93. f15c66e The new float repr causes too much trouble and pain. I'm disabling the feature until we have sorted out the issues on all machines. 64bit machines seem to have issues and Guido has reported even worse. by Christian Heimes · 18 years ago
  94. 284d927 Backport of r59456:59458 from py3k to trunk by Christian Heimes · 18 years ago
  95. e6daafb Add DocXMLRPCServer test from GHOP task #136, written by Jeff Wheeler. by Georg Brandl · 18 years ago
  96. 5466246 correct email address by Skip Montanaro · 18 years ago
  97. 66d41b2 This is probably what was meant here. by Armin Rigo · 18 years ago
  98. 5d1b4d4 Increase unit test coverage of SimpleXMLRPCServer. by Georg Brandl · 18 years ago
  99. 4e2f714 Fix Issue 1045. by Raymond Hettinger · 18 years ago
  100. 2e1af25 Error checking was too aggressive (reported by Chris Tismer) by Raymond Hettinger · 18 years ago