1. 0e6c66d Issue #19349: Corrected error message. by Vinay Sajip · 11 years ago
  2. a50f899 merge 3.2 (#19435) by Benjamin Peterson · 11 years ago
  3. 35aca89 merge 3.1 (#19435) by Benjamin Peterson · 11 years ago
  4. 04e9de4 use the collapsed path in the run_cgi method (closes #19435) by Benjamin Peterson · 11 years ago
  5. e90cedb Issue #19425 -- a pickling error should not cause pool to hang. by Richard Oudkerk · 11 years ago
  6. 3797065 #19395: Raise exception when pickling a (BZ2|LZMA)(Compressor|Decompressor). by Nadeem Vawda · 11 years ago
  7. 8797dcd Fixed merge test for Tcl/Tk <8.5 (issue #18964). by Serhiy Storchaka · 11 years ago
  8. 78abc9d Skip overzealous test for existence of the online license.html for pre-release versions. by Georg Brandl · 11 years ago
  9. 2d34f41 Bump to 3.3.3rc1. by Georg Brandl · 11 years ago
  10. c9d597a Update pydoc topics. by Georg Brandl · 11 years ago
  11. 045ee06 merge by Georg Brandl · 11 years ago
  12. bf3f8eb Issue #16037: HTTPMessage.readheaders() raises an HTTPException when more than by Georg Brandl · 11 years ago
  13. 28e7841 Issue #16040: CVE-2013-1752: nntplib: Limit maximum line lengths to 2048 to by Georg Brandl · 11 years ago
  14. 7e27abb Issue #16041: CVE-2013-1752: poplib: Limit maximum line lengths to 2048 to by Georg Brandl · 11 years ago
  15. 72c98d3 Issue #17997: Change behavior of ``ssl.match_hostname()`` to follow RFC 6125, by Georg Brandl · 11 years ago
  16. efa5a39 Issue #19405: Fixed outdated comments in the _sre module. by Serhiy Storchaka · 11 years ago
  17. ca580f4 Issue #16039: CVE-2013-1752: Change use of readline in imaplib module to limit by Georg Brandl · 11 years ago
  18. 89d8cd9 just return toplevel symbol table rather than all blocks (closes #19393) by Benjamin Peterson · 11 years ago
  19. 2ff68dd Close #19339: telnetlib module is now using time.monotonic() when available to by Victor Stinner · 11 years ago
  20. 3d2f68d Issue #19400: Prevent extension module build failures with Xcode 5 on OS X by Ned Deily · 11 years ago
  21. 7d6392c Issue #19288: Fixed the "in" operator of dbm.gnu databases for string by Serhiy Storchaka · 11 years ago
  22. 9da33ab Issue #19287: Fixed the "in" operator of dbm.ndbm databases for string by Serhiy Storchaka · 11 years ago
  23. be80fc9 Issue #19327: Fixed the working of regular expressions with too big charset. by Serhiy Storchaka · 11 years ago
  24. b82a3dc Increase the coverage of macurl2path. Patch by Colin Williams. by Senthil Kumaran · 11 years ago
  25. a1782e1 Issue #19360: fix test_site when Python is installed into $HOME/.local by Antoine Pitrou · 11 years ago
  26. d5d0bc3 Issue #19352: Fix unittest discovery when a module can be reached through several paths (e.g. under Debian/Ubuntu with virtualenv). by Antoine Pitrou · 11 years ago
  27. dde25c4 Issue #19340: Fix test_sysconfig when Python is built with an empty prefix. by Antoine Pitrou · 11 years ago
  28. 776b888 [Issue #19357] Ensure module "loaded" during tests gets forgotten. by Eric Snow · 11 years ago
  29. 27a8564 Issue #15207: Fix mimetypes to read from correct area in Windows registry (Original patch by Dave Chambers) by Tim Golden · 11 years ago
  30. f076f53 #8964: fix platform._sys_version to handle IronPython 2.6+. by Ezio Melotti · 11 years ago
  31. 6e9e4fe Make test_audioop discoverable by unittest. by Serhiy Storchaka · 11 years ago
  32. c30b178 Issue #16038: CVE-2013-1752: ftplib: Limit amount of data read by by Serhiy Storchaka · 11 years ago
  33. 0abb218 Issue #18235: Fix the sysconfig variables LDSHARED and BLDSHARED under AIX. by Antoine Pitrou · 11 years ago
  34. 0e071c9 Fixed tests for issue #19279. by Serhiy Storchaka · 11 years ago
  35. 35804e4 Issue #19279: UTF-7 decoder no more produces illegal strings. by Serhiy Storchaka · 11 years ago
  36. d3b7505 Issue #19276: Fixed the wave module on 64-bit big-endian platforms. by Serhiy Storchaka · 11 years ago
  37. c955291 Issue 19276: Fix tests for wave files on big-endian platforms. by Serhiy Storchaka · 11 years ago
  38. 9816a1e Issue #14407: Fix unittest test discovery in test_concurrent_futures. by Antoine Pitrou · 11 years ago
  39. b46fe79 Print process instead of pid. by Richard Oudkerk · 11 years ago
  40. 85812bc Issue #18919: Fixed resource leaks in audio tests. by Serhiy Storchaka · 11 years ago
  41. 4606d36 Issue #18919: Check warnings messages in the aifc module tests. by Serhiy Storchaka · 11 years ago
  42. d98d6cb Closes #19258: close WSGI server after handling request in demo code. by Georg Brandl · 11 years ago
  43. 0079ffc Closes #17154: error out gracefully on "ignore" or "condition" without argument. by Georg Brandl · 11 years ago
  44. 9e091e1 Closes #16657: fix docstring of traceback.format_tb(). by Georg Brandl · 11 years ago
  45. 24201d4 Issue #18776: atexit callbacks now display their full traceback when they raise an exception. by Antoine Pitrou · 11 years ago
  46. 1b80e63 Issue #18919: Unified and extended tests for audio modules: aifc, sunau and by Serhiy Storchaka · 11 years ago
  47. c30b59f Closes #17375: port new threading docstrings from 2.7. by Georg Brandl · 11 years ago
  48. 4f35079 Make test_terminate() succeed or fail quickly. by Richard Oudkerk · 11 years ago
  49. e23b2d0 Issue #18919: If the close() method of a writer in the sunau or wave module by Serhiy Storchaka · 11 years ago
  50. 4b53259 Issue #19131: The aifc module now correctly reads and writes sampwidth of by Serhiy Storchaka · 11 years ago
  51. 7634e1c Issue 19158: a rare race in BoundedSemaphore could allow .release() too often. by Tim Peters · 11 years ago
  52. 5e59676 Issue #18037: Do not escape '\u' and '\U' in raw strings. by Serhiy Storchaka · 11 years ago
  53. d4b9f92 Issue 14927: Remove a docstring line that is no longer applicable. by Raymond Hettinger · 11 years ago
  54. 8fe47c3 Minor clean-up of function parameters in random(). by Raymond Hettinger · 11 years ago
  55. 4e1f3d6 #19166: use an unused var in a test. Patch by Vajrasky Kok. by Ezio Melotti · 11 years ago
  56. cb1d96f Issue #18594: Make the C code more closely match the pure python code. by Raymond Hettinger · 11 years ago
  57. 5c4b4c5 [issue19152] Revert 832579dbafd6. by Eric Snow · 11 years ago
  58. af8566c [issue19152] Add ExtensionFileLoader.get_filename(). by Eric Snow · 11 years ago
  59. efbc475 [issue19151] Fix docstring and use of _get_suppported_file_loaders() to reflect 2-tuples. by Eric Snow · 11 years ago
  60. 60b1834 Issue #19014: memoryview.cast() is now allowed on zero-length views. by Antoine Pitrou · 11 years ago
  61. def0a4c Issue #18037: 2to3 now escapes '\u' and '\U' in native strings. by Serhiy Storchaka · 11 years ago
  62. 5184438 Issue #19137: The pprint module now correctly formats instances of set and by Serhiy Storchaka · 11 years ago
  63. 1a33b2f Close #19092: ExitStack now reraises exceptions from __exit__ by Nick Coghlan · 11 years ago
  64. 3c678c3 Issue #12641: Avoid passing "-mno-cygwin" to the mingw32 compiler, except when necessary. by Antoine Pitrou · 11 years ago
  65. 600b735 Minor code improvement. Review comment by Eric V. Smith by Senthil Kumaran · 11 years ago
  66. a5ec63b remove unused imports by Benjamin Peterson · 11 years ago
  67. 8b3f5aa Issue #19112: avoid using function defined in method. by Richard Oudkerk · 11 years ago
  68. 72a9854 remove duplicate method (closes #19127) by Benjamin Peterson · 11 years ago
  69. 56b143d condense two tests with the same name (closes #19114) by Benjamin Peterson · 11 years ago
  70. cc6ef36 move helper function into its test method (closes #19112) by Benjamin Peterson · 11 years ago
  71. 52010b4 fix duplicate test names in test_dis (closes #19117) by Benjamin Peterson · 11 years ago
  72. f8ab760 remove duplicate test_mkd (closes #19118) by Benjamin Peterson · 11 years ago
  73. db0601f combine two tests to avoid duplicate names (closes #19116) by Benjamin Peterson · 11 years ago
  74. e8c8a59 fix duplicate test name (closes #19126) by Benjamin Peterson · 11 years ago
  75. 1eca062 fix test to run and test that smtpd does support ELHO (closes #19125) by Benjamin Peterson · 11 years ago
  76. 05ab702 remove duplicate test from test_import (closes #19122) by Benjamin Peterson · 11 years ago
  77. 643238e Issue #4366: Fix building extensions on all platforms when --enable-shared is used. by Antoine Pitrou · 11 years ago
  78. 3103631 fix duplicate test names (closes #19115) by Benjamin Peterson · 11 years ago
  79. 0300a8d Issue #18950: Fix miscellaneous bugs in the sunau module. by Serhiy Storchaka · 11 years ago
  80. d2c07a5 Issue #19053: ZipExtFile.read1() with non-zero argument no more returns empty by Serhiy Storchaka · 11 years ago
  81. 369606d Issue #19028: Fixed tkinter.Tkapp.merge() for non-string arguments. by Serhiy Storchaka · 11 years ago
  82. ce34687 Fix comment in test_gdb by Nick Coghlan · 11 years ago
  83. c8bf95c Issue #18050: Fixed an incompatibility of the re module with Python 3.3.0 by Serhiy Storchaka · 11 years ago
  84. 4b49ae6 Merge #14984: only import pwd on POSIX. by R David Murray · 11 years ago
  85. 58bf8d2 Merge #14984: only import pwd on POSIX. by R David Murray · 11 years ago
  86. 505be21 #14984: only import pwd on POSIX. by R David Murray · 11 years ago
  87. 41a22f1 #19037: adjust file times *before* moving maildir files into place. by R David Murray · 11 years ago
  88. fb9dc0b Merge #14984: On POSIX, enforce permissions when reading default .netrc. by R David Murray · 11 years ago
  89. 8270a2c Merge #14984: On POSIX, enforce permissions when reading default .netrc. by R David Murray · 11 years ago
  90. 104aab9 #14984: On POSIX, enforce permissions when reading default .netrc. by R David Murray · 11 years ago
  91. dafea85 Issue #18873: The tokenize module, IDLE, 2to3, and the findnocoding.py script by Serhiy Storchaka · 11 years ago
  92. 975fce3 Issue #19029: Change non-existing since 3.0 StringType to str. by Serhiy Storchaka · 11 years ago
  93. 46f5ca3 Issue #19018: The heapq.merge() function no longer suppresses IndexError by Raymond Hettinger · 11 years ago
  94. 0a32d92 Merge heads. by Ezio Melotti · 11 years ago
  95. 1bc6ceb #18206: Fix test for existence of license URL. by R David Murray · 11 years ago
  96. c17a8df Fix tkinter regression introduced by the security fix in #16248. by Georg Brandl · 11 years ago
  97. db4309e Fix tkinter regression introduced by the security fix in #16248. by Georg Brandl · 11 years ago
  98. 87f0937 #18856: improve test coverage of the calendar module. Patch by Madison May. by Ezio Melotti · 11 years ago
  99. e7f4c1c #18981: fix a typo in a comment (noticed by Anoop Thomas Mathew). by Ezio Melotti · 11 years ago
  100. dd3661e Issue #18997: fix ElementTree crash with using pickle and __getstate__. by Eli Bendersky · 11 years ago