1. 3c43fcb Issue 4879: Allow buffering for HTTPResponse by Kristján Valur Jónsson · 16 years ago
  2. 164b045 make tests fail if they can't be imported by Benjamin Peterson · 16 years ago
  3. da62f81 Remove an unnecessary check from test_decimal. by Mark Dickinson · 16 years ago
  4. 43723e2 - Issue #4861: ctypes.util.find_library(): Robustify. Fix library detection on by Matthias Klose · 16 years ago
  5. b74fc2b Issue #3860: GzipFile and BZ2File now support the context manager protocol. by Antoine Pitrou · 16 years ago
  6. 0e2d8c3 Issue 4293: Make Py_AddPendingCall() thread safe by Kristján Valur Jónsson · 16 years ago
  7. 84040db Issue 4336: Let users of HTTPConnection.endheaders() submit a message body to the function if required. by Kristján Valur Jónsson · 16 years ago
  8. 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 · 16 years ago
  9. 25f221b Merged revisions 68306-68308,68340,68368,68422 via svnmerge from by Benjamin Peterson · 16 years ago
  10. 1a240fb fixed #4394 make the storage of the password optional in .pypirc by Tarek Ziadé · 16 years ago
  11. 5b913e3 Forward port r68394 for issue 4816. by Raymond Hettinger · 16 years ago
  12. e6dc531 Issue #4869: clarify documentation for random.expovariate. by Mark Dickinson · 16 years ago
  13. fde5b80 Issue #4864: test_msvc9compiler failed on VC6/7. by Hirokazu Yamamoto · 16 years ago
  14. 09cafb6 Use shutil.rmtree rather than os.rmdir. by Antoine Pitrou · 16 years ago
  15. e96d4ea Issue #1180193: When importing a module from a .pyc (or .pyo) file with by Antoine Pitrou · 16 years ago
  16. f0d2c3f Issue #4272: Add an optional argument to the GzipFile constructor to override the timestamp in the gzip stream. by Antoine Pitrou · 16 years ago
  17. 65808ff More Python 2.3 compatibility fixes for decimal.py. by Mark Dickinson · 16 years ago
  18. 6a96163 Fix Decimal.from_float to use valid Python 2.3 syntax, as per by Mark Dickinson · 16 years ago
  19. d81780b using clearer syntax by Tarek Ziadé · 16 years ago
  20. 85d6fb5 fixed #1702551: distutils sdist was not pruning VCS directories under win32 by Tarek Ziadé · 16 years ago
  21. fe42789 Manually merge r68095,68186,68187,68188,68190 from 2.6 branch. by Georg Brandl · 16 years ago
  22. b7e835b Reapply r68191. by Raymond Hettinger · 16 years ago
  23. f4d8597 Issue 4796: Add from_float methods to the decimal module. by Raymond Hettinger · 16 years ago
  24. 37fc823 Merged revisions 67900-67901,67919,67928,67984,67991-67993,68106-68108,68110 via svnmerge from by Benjamin Peterson · 16 years ago
  25. 4aa04db Issue #4812: further renaming of internal Decimal constants, for clarity. by Mark Dickinson · 16 years ago
  26. c5de096 Issue #4812: add missing underscore prefix to some internal-use-only by Mark Dickinson · 16 years ago
  27. 44e1581 Issue #4615. Document how to use itertools for de-duping. by Raymond Hettinger · 16 years ago
  28. 072bb40 Fix for issues #841800 and #900506 by Ronald Oussoren · 16 years ago
  29. abcc168 Fix for issue 1149804 by Ronald Oussoren · 16 years ago
  30. 919697c Fix for issue r1737832 by Ronald Oussoren · 16 years ago
  31. 7f8cbf0 Fix for issue 1627952 by Ronald Oussoren · 16 years ago
  32. 63b74fe Fix for issue 900949 by Ronald Oussoren · 16 years ago
  33. 0238497e Fix for issue1594 by Ronald Oussoren · 16 years ago
  34. 8c95484 Fix for issue3559: No preferences menu in IDLE on OSX by Ronald Oussoren · 16 years ago
  35. 733dc74 fill in actual issue number in tests by Antoine Pitrou · 16 years ago
  36. aa68790 Issue #3680: Reference cycles created through a dict, set or deque iterator did not get collected. by Antoine Pitrou · 16 years ago
  37. 6269fec #4228: Pack negative values the same way as 2.4 in struct's L format. by Georg Brandl · 16 years ago
  38. 775c307 #4222: document dis.findlabels() and dis.findlinestarts() and by Georg Brandl · 16 years ago
  39. 2adde05 #4185: clarify escape behavior of replacement strings. by Georg Brandl · 16 years ago
  40. 6060d5e simplfy code by Benjamin Peterson · 16 years ago
  41. 8ad09a4 #4795 inspect.isgeneratorfunction() should return False instead of None by Benjamin Peterson · 16 years ago
  42. 941db4d fix name collision issues by Benjamin Peterson · 16 years ago
  43. 43ea6d9 #4788 qualify some bare except clauses by Benjamin Peterson · 16 years ago
  44. b1a8541 Fixed #4702: Throwing DistutilsPlatformError instead of IOError under win32 if MSVC is not found by Tarek Ziadé · 16 years ago
  45. 180e400 Issue #4701: implicitly call PyType_Ready from PyObject_Hash by Nick Coghlan · 16 years ago
  46. c13acb1 fixed #4646 : distutils was choking on empty options arg in the setup function. by Tarek Ziadé · 16 years ago
  47. 7af6556 #4764 in io.open, set IOError.filename when trying to open a directory on POSIX platforms by Benjamin Peterson · 16 years ago
  48. fe231b0 #4764 set IOError.filename when trying to open a directory on POSIX platforms by Benjamin Peterson · 16 years ago
  49. 732479f Issue #3767: Convert Tk object to string in tkColorChooser. by Martin v. Löwis · 16 years ago
  50. e2eb2b4 Issue #3248: Allow placing ScrolledText in a PanedWindow. by Martin v. Löwis · 16 years ago
  51. 88a3083 Update the fix for issue4064 to deal correctly with all three variants of by Ronald Oussoren · 16 years ago
  52. 4b48c61 Issue4064: architecture string for universal builds on OSX by Ronald Oussoren · 16 years ago
  53. dae1a6a Issue #2153: modernize coding style of unittest.py, remove obsolete compatibility stuff. by Antoine Pitrou · 16 years ago
  54. 697ca3d Issue #4444: Allow assertRaises() to be used as a context handler. by Antoine Pitrou · 16 years ago
  55. 6425a2f Backport r67974: by Georg Brandl · 16 years ago
  56. 3eef441 Follow-up to r67746 in order to restore backwards-compatibility for by Georg Brandl · 16 years ago
  57. 8d5934b #4748 lambda generators shouldn't return values by Benjamin Peterson · 16 years ago
  58. c3a9803 Patch #4739 by David Laban: add symbols to pydoc help topics, by Georg Brandl · 16 years ago
  59. 6f193e0 Issue #4756: zipfile.is_zipfile() now supports file-like objects. by Antoine Pitrou · 16 years ago
  60. e57e999 Fix bogus unicode tests in pickletester. by Alexandre Vassalotti · 16 years ago
  61. f852bf9 Fix issue #4730: cPickle corrupts high-unicode strings. by Alexandre Vassalotti · 16 years ago
  62. 0fc0747 Issue #4740: Use HIGHEST_PROTOCOL in pickle test. by Hirokazu Yamamoto · 16 years ago
  63. e4c75bb fixed #4400 : distutils .pypirc default generated file was broken. by Tarek Ziadé · 16 years ago
  64. 54686e3 #4736 BufferRWPair.closed shouldn't try to call another property as a function by Benjamin Peterson · 16 years ago
  65. f205c13 As a result of a regression that snuck into 2.5.3 add a test case that by Skip Montanaro · 16 years ago
  66. f09925d add py3k warnings to frame.f_exc_* by Benjamin Peterson · 16 years ago
  67. 03943d9 Merged revisions 67809 via svnmerge from by Benjamin Peterson · 16 years ago
  68. 1a70798 Issue #3439: add bit_length method to int and long. by Mark Dickinson · 16 years ago
  69. d0c3515 Issue #2183: Simplify and optimize bytecode for list comprehensions. by Antoine Pitrou · 16 years ago
  70. 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 · 16 years ago
  71. 31949b9 #3954: Fix error handling code in _hotshot.logreader by Amaury Forgeot d'Arc · 16 years ago
  72. 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 · 16 years ago
  73. 2d2fe57 #4578: fix has_key() usage in compiler package. by Georg Brandl · 16 years ago
  74. cc5b64a modify other occurrence of test_bad_address by Antoine Pitrou · 16 years ago
  75. 122388a try to fix failure in test_bad_address on some buildbots by Antoine Pitrou · 16 years ago
  76. 655fbf1 Backport r67759 (fix io.IncrementalNewlineDecoder for UTF-16 et al.). by Antoine Pitrou · 16 years ago
  77. bbba3f0 Add file that was missed from r67750 by Nick Coghlan · 16 years ago
  78. 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 · 16 years ago
  79. 3e16f3d remove has_key usage by Benjamin Peterson · 16 years ago
  80. 74af3bb Issue #4163: Use unicode-friendly word splitting in the textwrap functions when given an unicode string. by Antoine Pitrou · 16 years ago
  81. 3b02742 Issue #4616: TarFile.utime(): Restore directory times on Windows. by Lars Gustäbel · 16 years ago
  82. e29d435 Issue #4084: Fix max, min, max_mag and min_mag Decimal methods to by Facundo Batista · 16 years ago
  83. 240028c #1030250: correctly pass the dry_run option to the mkpath() function. by Amaury Forgeot d'Arc · 16 years ago
  84. ad9b599 #4559: When a context manager's __exit__() method returns an object whose by Amaury Forgeot d'Arc · 16 years ago
  85. 1868d7c Add simple unittests for Request by Jeremy Hylton · 16 years ago
  86. 2d873bd Issue 4597: Fix several cases in EvalFrameEx where an exception could be by Jeffrey Yasskin · 16 years ago
  87. ae5bece Issue #4509: bugs in bytearray with exports (buffer protocol) by Antoine Pitrou · 16 years ago
  88. 826f3fe Issue #4445: save 3 bytes (on average, on a typical machine) per by Mark Dickinson · 16 years ago
  89. fe879e8 #4529: fix parser's validation for try-except-finally statements. by Georg Brandl · 16 years ago
  90. 3129ea2 #4544: add `dedent` to textwrap.__all__. by Georg Brandl · 16 years ago
  91. a07435d #4458: recognize "-" as an argument, not a malformed option in gnu_getopt(). by Georg Brandl · 16 years ago
  92. 2657680 rename the new check_call_output to check_output. its less ugly. by Gregory P. Smith · 16 years ago
  93. 6831d6b Took Nick Coghlan's advice about importing warnings globally in logging, to avoid the possibility of race conditions: "This could deadlock if a thread spawned as a side effect of importing a module happens to trigger a warning. warnings is pulled into sys.modules as part of the interpreter startup - having a global 'import warnings' shouldn't have any real effect on logging's import time." by Vinay Sajip · 16 years ago
  94. 97f49f4 Adds a subprocess.check_call_output() function to return the output from a by Gregory P. Smith · 16 years ago
  95. 5248103 Issue #1055234: cgi.parse_header(): Fixed parsing of header parameters to by Fred Drake · 16 years ago
  96. 213faca Issue #4384: Added logging integration with warnings module using captureWarnings(). This change includes a NullHandler which does nothing; it will be of use to library developers who want to avoid the "No handlers could be found for logger XXX" message which can appear if the library user doesn't configure logging. by Vinay Sajip · 16 years ago
  97. 7989a4d Backport r67478 by Raymond Hettinger · 16 years ago
  98. 0381f48 Send HTTP headers and message body in a single send() call. by Jeremy Hylton · 16 years ago
  99. 21d2e59 Reflow long lines. by Jeremy Hylton · 16 years ago
  100. 2555d9d Merged revisions 67384,67386-67387,67389-67390,67392,67399-67400,67403-67405,67426 via svnmerge from by Benjamin Peterson · 16 years ago