1. 8adc0b5 Fix recently introduced test cases. by Kristján Valur Jónsson · 17 years ago
  2. 018760e Re-enable all tests for windows platforms. by Kristján Valur Jónsson · 17 years ago
  3. afd112b Add tests for __init__() and update() with no args. by Raymond Hettinger · 17 years ago
  4. 717c083 fix test_xmlrpc failures #4939 by Benjamin Peterson · 17 years ago
  5. b54447f #1162154: inspect.getmembers() now skips attributes that raise AttributeError, by Amaury Forgeot d'Arc · 17 years ago
  6. b24c951 Use assertRaises. by Georg Brandl · 17 years ago
  7. dd53e11 ast.literal_eval can properly evaluate complex numbers now. This fixes issue4907. by Armin Ronacher · 17 years ago
  8. 2d21d50 Issue 4922: Incorrect comments for MutableSet.add() and MutableSet.discard(). by Raymond Hettinger · 17 years ago
  9. 35288c6 Speed-up __repr__. Eliminate duplicate tests. Use a from-irmport. by Raymond Hettinger · 17 years ago
  10. 783d73f Fixup and simplify docstrings and doctests. by Raymond Hettinger · 17 years ago
  11. aaa6e63 Simplify Counter() API. Replace items keyword argument by Raymond Hettinger · 17 years ago
  12. a40d573 #3720: Interpreter crashes when an evil iterator removes its own next function. by Amaury Forgeot d'Arc · 17 years ago
  13. f94d7fa Issue 1696199: Add collections.Counter(). by Raymond Hettinger · 17 years ago
  14. 1c62b65 Add tests for invalid format specifiers in strftime, and for handling of invalid file descriptors in the os module. by Kristján Valur Jónsson · 17 years ago
  15. b5bc33c Optimize heapq.nsmallest/nlargest for cases where n==1 or n>=size. by Raymond Hettinger · 17 years ago
  16. 3c43fcb Issue 4879: Allow buffering for HTTPResponse by Kristján Valur Jónsson · 17 years ago
  17. 164b045 make tests fail if they can't be imported by Benjamin Peterson · 17 years ago
  18. da62f81 Remove an unnecessary check from test_decimal. by Mark Dickinson · 17 years ago
  19. 43723e2 - Issue #4861: ctypes.util.find_library(): Robustify. Fix library detection on by Matthias Klose · 17 years ago
  20. b74fc2b Issue #3860: GzipFile and BZ2File now support the context manager protocol. by Antoine Pitrou · 17 years ago
  21. 0e2d8c3 Issue 4293: Make Py_AddPendingCall() thread safe by Kristján Valur Jónsson · 17 years ago
  22. 84040db Issue 4336: Let users of HTTPConnection.endheaders() submit a message body to the function if required. by Kristján Valur Jónsson · 17 years ago
  23. 7e876f5 Issue 4336: HTTPRequest._send_output() now deals with the case of the message body not being a string. This allows clients to use endheaders(message_body) instead of endheaders() + send(message_body) without making any extra checks. by Kristján Valur Jónsson · 17 years ago
  24. 25f221b Merged revisions 68306-68308,68340,68368,68422 via svnmerge from by Benjamin Peterson · 17 years ago
  25. 1a240fb fixed #4394 make the storage of the password optional in .pypirc by Tarek Ziadé · 17 years ago
  26. 5b913e3 Forward port r68394 for issue 4816. by Raymond Hettinger · 17 years ago
  27. e6dc531 Issue #4869: clarify documentation for random.expovariate. by Mark Dickinson · 17 years ago
  28. fde5b80 Issue #4864: test_msvc9compiler failed on VC6/7. by Hirokazu Yamamoto · 17 years ago
  29. 09cafb6 Use shutil.rmtree rather than os.rmdir. by Antoine Pitrou · 17 years ago
  30. e96d4ea Issue #1180193: When importing a module from a .pyc (or .pyo) file with by Antoine Pitrou · 17 years ago
  31. f0d2c3f Issue #4272: Add an optional argument to the GzipFile constructor to override the timestamp in the gzip stream. by Antoine Pitrou · 17 years ago
  32. 65808ff More Python 2.3 compatibility fixes for decimal.py. by Mark Dickinson · 17 years ago
  33. 6a96163 Fix Decimal.from_float to use valid Python 2.3 syntax, as per by Mark Dickinson · 17 years ago
  34. d81780b using clearer syntax by Tarek Ziadé · 17 years ago
  35. 85d6fb5 fixed #1702551: distutils sdist was not pruning VCS directories under win32 by Tarek Ziadé · 17 years ago
  36. fe42789 Manually merge r68095,68186,68187,68188,68190 from 2.6 branch. by Georg Brandl · 17 years ago
  37. b7e835b Reapply r68191. by Raymond Hettinger · 17 years ago
  38. f4d8597 Issue 4796: Add from_float methods to the decimal module. by Raymond Hettinger · 17 years ago
  39. 37fc823 Merged revisions 67900-67901,67919,67928,67984,67991-67993,68106-68108,68110 via svnmerge from by Benjamin Peterson · 17 years ago
  40. 4aa04db Issue #4812: further renaming of internal Decimal constants, for clarity. by Mark Dickinson · 17 years ago
  41. c5de096 Issue #4812: add missing underscore prefix to some internal-use-only by Mark Dickinson · 17 years ago
  42. 44e1581 Issue #4615. Document how to use itertools for de-duping. by Raymond Hettinger · 17 years ago
  43. 072bb40 Fix for issues #841800 and #900506 by Ronald Oussoren · 17 years ago
  44. abcc168 Fix for issue 1149804 by Ronald Oussoren · 17 years ago
  45. 919697c Fix for issue r1737832 by Ronald Oussoren · 17 years ago
  46. 7f8cbf0 Fix for issue 1627952 by Ronald Oussoren · 17 years ago
  47. 63b74fe Fix for issue 900949 by Ronald Oussoren · 17 years ago
  48. 0238497e Fix for issue1594 by Ronald Oussoren · 17 years ago
  49. 8c95484 Fix for issue3559: No preferences menu in IDLE on OSX by Ronald Oussoren · 17 years ago
  50. 733dc74 fill in actual issue number in tests by Antoine Pitrou · 17 years ago
  51. aa68790 Issue #3680: Reference cycles created through a dict, set or deque iterator did not get collected. by Antoine Pitrou · 17 years ago
  52. 6269fec #4228: Pack negative values the same way as 2.4 in struct's L format. by Georg Brandl · 17 years ago
  53. 775c307 #4222: document dis.findlabels() and dis.findlinestarts() and by Georg Brandl · 17 years ago
  54. 2adde05 #4185: clarify escape behavior of replacement strings. by Georg Brandl · 17 years ago
  55. 6060d5e simplfy code by Benjamin Peterson · 17 years ago
  56. 8ad09a4 #4795 inspect.isgeneratorfunction() should return False instead of None by Benjamin Peterson · 17 years ago
  57. 941db4d fix name collision issues by Benjamin Peterson · 17 years ago
  58. 43ea6d9 #4788 qualify some bare except clauses by Benjamin Peterson · 17 years ago
  59. b1a8541 Fixed #4702: Throwing DistutilsPlatformError instead of IOError under win32 if MSVC is not found by Tarek Ziadé · 17 years ago
  60. 180e400 Issue #4701: implicitly call PyType_Ready from PyObject_Hash by Nick Coghlan · 17 years ago
  61. c13acb1 fixed #4646 : distutils was choking on empty options arg in the setup function. by Tarek Ziadé · 17 years ago
  62. 7af6556 #4764 in io.open, set IOError.filename when trying to open a directory on POSIX platforms by Benjamin Peterson · 17 years ago
  63. fe231b0 #4764 set IOError.filename when trying to open a directory on POSIX platforms by Benjamin Peterson · 17 years ago
  64. 732479f Issue #3767: Convert Tk object to string in tkColorChooser. by Martin v. Löwis · 17 years ago
  65. e2eb2b4 Issue #3248: Allow placing ScrolledText in a PanedWindow. by Martin v. Löwis · 17 years ago
  66. 88a3083 Update the fix for issue4064 to deal correctly with all three variants of by Ronald Oussoren · 17 years ago
  67. 4b48c61 Issue4064: architecture string for universal builds on OSX by Ronald Oussoren · 17 years ago
  68. dae1a6a Issue #2153: modernize coding style of unittest.py, remove obsolete compatibility stuff. by Antoine Pitrou · 17 years ago
  69. 697ca3d Issue #4444: Allow assertRaises() to be used as a context handler. by Antoine Pitrou · 17 years ago
  70. 6425a2f Backport r67974: by Georg Brandl · 17 years ago
  71. 3eef441 Follow-up to r67746 in order to restore backwards-compatibility for by Georg Brandl · 17 years ago
  72. 8d5934b #4748 lambda generators shouldn't return values by Benjamin Peterson · 17 years ago
  73. c3a9803 Patch #4739 by David Laban: add symbols to pydoc help topics, by Georg Brandl · 17 years ago
  74. 6f193e0 Issue #4756: zipfile.is_zipfile() now supports file-like objects. by Antoine Pitrou · 17 years ago
  75. e57e999 Fix bogus unicode tests in pickletester. by Alexandre Vassalotti · 17 years ago
  76. f852bf9 Fix issue #4730: cPickle corrupts high-unicode strings. by Alexandre Vassalotti · 17 years ago
  77. 0fc0747 Issue #4740: Use HIGHEST_PROTOCOL in pickle test. by Hirokazu Yamamoto · 17 years ago
  78. e4c75bb fixed #4400 : distutils .pypirc default generated file was broken. by Tarek Ziadé · 17 years ago
  79. 54686e3 #4736 BufferRWPair.closed shouldn't try to call another property as a function by Benjamin Peterson · 17 years ago
  80. f205c13 As a result of a regression that snuck into 2.5.3 add a test case that by Skip Montanaro · 17 years ago
  81. f09925d add py3k warnings to frame.f_exc_* by Benjamin Peterson · 17 years ago
  82. 03943d9 Merged revisions 67809 via svnmerge from by Benjamin Peterson · 17 years ago
  83. 1a70798 Issue #3439: add bit_length method to int and long. by Mark Dickinson · 17 years ago
  84. d0c3515 Issue #2183: Simplify and optimize bytecode for list comprehensions. by Antoine Pitrou · 17 years ago
  85. 43caaa0 Merged revisions 67427,67431,67433,67435,67630,67652,67656-67657,67674-67675,67678-67679,67705-67706,67716,67723,67765-67771,67774,67776,67778 via svnmerge from by Benjamin Peterson · 17 years ago
  86. 31949b9 #3954: Fix error handling code in _hotshot.logreader by Amaury Forgeot d'Arc · 17 years ago
  87. 6806001 Issue #4197: Fix the remaining part of the doctest-in-zipfile problem by giving linecache access to the module globals when available by Nick Coghlan · 17 years ago
  88. 2d2fe57 #4578: fix has_key() usage in compiler package. by Georg Brandl · 17 years ago
  89. cc5b64a modify other occurrence of test_bad_address by Antoine Pitrou · 17 years ago
  90. 122388a try to fix failure in test_bad_address on some buildbots by Antoine Pitrou · 17 years ago
  91. 655fbf1 Backport r67759 (fix io.IncrementalNewlineDecoder for UTF-16 et al.). by Antoine Pitrou · 17 years ago
  92. bbba3f0 Add file that was missed from r67750 by Nick Coghlan · 17 years ago
  93. a205347 Fix several issues relating to access to source code inside zipfiles. Initial work by Alexander Belopolsky. See Misc/NEWS in this checkin for details. by Nick Coghlan · 17 years ago
  94. 3e16f3d remove has_key usage by Benjamin Peterson · 17 years ago
  95. 74af3bb Issue #4163: Use unicode-friendly word splitting in the textwrap functions when given an unicode string. by Antoine Pitrou · 17 years ago
  96. 3b02742 Issue #4616: TarFile.utime(): Restore directory times on Windows. by Lars Gustäbel · 17 years ago
  97. e29d435 Issue #4084: Fix max, min, max_mag and min_mag Decimal methods to by Facundo Batista · 17 years ago
  98. 240028c #1030250: correctly pass the dry_run option to the mkpath() function. by Amaury Forgeot d'Arc · 17 years ago
  99. ad9b599 #4559: When a context manager's __exit__() method returns an object whose by Amaury Forgeot d'Arc · 17 years ago
  100. 1868d7c Add simple unittests for Request by Jeremy Hylton · 17 years ago