1. d6e19c3 Bump version. by Georg Brandl · 15 years ago v3.2rc2
  2. 56632b4 Update pydoc topics. by Georg Brandl · 15 years ago
  3. 0f6b47a #10680: fix mutually exclusive arguments in argument groups. by Georg Brandl · 15 years ago
  4. d2f3857 #10961: fix exception handling in new pydoc server code. by Georg Brandl · 15 years ago
  5. d163c2c #11069: fix the IDLE Stack Viewer, by not using "list" as a variable name. by Georg Brandl · 15 years ago
  6. b7deff1 #9124: mailbox now accepts binary input and uses binary internally by R. David Murray · 15 years ago
  7. 793ee1f Issue #10845: Improve compatibility between multiprocessing on Windows and package, zipfile and directory execution (Reviewed by Antoine Pitrou and approved by Georg Brandl) by Nick Coghlan · 15 years ago
  8. ac4e58e Protect logging call against None argument (fixes #11045). by Éric Araujo · 15 years ago
  9. 7dabf16 Issue #10939: Make Internaldate2tuple test more robust. by Alexander Belopolsky · 15 years ago
  10. 5c2d330 Issue 11052: Correct IDLE menu accelerators on Mac OS X for Save by Ned Deily · 15 years ago
  11. 806c944 Issue #11053: Fix IDLE "Syntax Error" windows to behave as in 2.x, by Ned Deily · 15 years ago
  12. 7006393 Issue #10940: Workaround an IDLE hang on Mac OS X 10.6 when using the by Ned Deily · 15 years ago
  13. 19e0a9e Issue #10939: Fixed imaplib.Internaldate2tuple(). Thanks Joe Peterson by Alexander Belopolsky · 15 years ago
  14. 80f75e6 Issue #10989: Fix a crash on SSLContext.load_verify_locations(None, True). by Victor Stinner · 15 years ago
  15. a1eac72 Issue #11302: missing type check on _string.formatter_field_name_split and _string.formatter_parser caused crash. by Eric Smith · 15 years ago
  16. e180d39 Issue 10573: revert unittest docs to first / second by Michael Foord · 15 years ago
  17. 8b5eb2f Issue #11020: Command-line pyclbr was broken because of missing 2-to-3 by Raymond Hettinger · 15 years ago
  18. 528d9f6 Issue #11018: fix a test to not be a no-op in test_bz2. by Antoine Pitrou · 15 years ago
  19. 7372a07 #11019: Make BytesGenerator handle Message with None body. by R. David Murray · 15 years ago
  20. a63a312 Issue #11014: Make 'filter' argument in tarfile.Tarfile.add() into a by Raymond Hettinger · 15 years ago
  21. bdd2d93 Revert r88197. I'll refix correctly once there is a test. by R. David Murray · 15 years ago
  22. 3a7ee3a Fix BytesGenerator._handle_text() if the message has no payload (None) by Victor Stinner · 15 years ago
  23. 0c4cc55 fix import in email.message_from_binary_file() by Victor Stinner · 15 years ago
  24. 512d2cc Issue #11004: Repair edge case in deque.count(). (Reviewed by Georg Brandl.) by Raymond Hettinger · 15 years ago
  25. 5543e81 Tighten the restrictions on the test_sys test which triggers a fatal error when by Brett Cannon · 15 years ago
  26. d454249 another pretty crasher served up by pypy by Benjamin Peterson · 15 years ago
  27. 122539e #10974: IDLE no longer crashes if its recent files list includes files by Ned Deily · 15 years ago
  28. feac624 Issue #11000 ast.parse parses source, not just expressions. by Terry Reedy · 15 years ago
  29. b027011 Issue #9509: make argarse properly handle IOErrors raised by argparse.FileType. Approved by Georg in the tracker. by Steven Bethard · 15 years ago
  30. bf1d2bc Make the type consistent for hashlib algorithm constants. (Reviewed by Benjamin). by Raymond Hettinger · 15 years ago
  31. c3e8867 Skip a recursion depth check test when running under CPython and have a trace by Brett Cannon · 15 years ago
  32. 6ef18f4 Fix typo. by Raymond Hettinger · 15 years ago
  33. 98b140c Add entry for reprlib. by Raymond Hettinger · 15 years ago
  34. c7c199f #10983: fix several bugs in the _tunnel implementation that seem to have missed while porting between branches. A unittest is needed! by Georg Brandl · 15 years ago
  35. 5953128 To match the behaviour of HTTP server, the HTTP client library now also encodes by Armin Ronacher · 15 years ago
  36. 8d96d77 Issue #10980: encode headers with latin1 instead of ASCII in the HTTP server. by Armin Ronacher · 15 years ago
  37. 01241d6 Issue #10949: Improved robustness of rotating file handlers. by Vinay Sajip · 15 years ago
  38. 00d650b Fix JSON docs about loads() accepting only str objects, not bytes. by Antoine Pitrou · 15 years ago
  39. 305bc9e Issue #10955: Fix a potential crash when trying to mmap() a file past its by Antoine Pitrou · 15 years ago
  40. 41a99bc Issue #10934: Fixed and expanded Internaldate2tuple() and by Alexander Belopolsky · 15 years ago
  41. ad62b03 Issue #10451: memoryview objects could allow to mutate a readable buffer. by Antoine Pitrou · 15 years ago
  42. 5bdfd91 Remove out-of-date comment by Raymond Hettinger · 15 years ago
  43. d0ebc75 Fix mmap and test_mmap under Windows too (followup to r88022) by Antoine Pitrou · 15 years ago v3.2rc1
  44. 3988ed8 Bump to 3.2rc1. by Georg Brandl · 15 years ago
  45. 5cc3dcb Update pydoc topics. by Georg Brandl · 15 years ago
  46. 85f4615 Issue #10916: mmap should not segfault when a file is mapped using 0 as by Antoine Pitrou · 15 years ago
  47. 4ce92b2 #10907: Warn OS X 10.6 IDLE users to use ActiveState Tcl/Tk 8.5, by Ned Deily · 15 years ago
  48. f1c7ca9 cgi: use isinstance(x, list) instead of type(x) == type([]) by Victor Stinner · 15 years ago
  49. 5c23b8e Issue #4953: cgi.FieldStorage and cgi.parse() parse the request as bytes, not by Victor Stinner · 15 years ago
  50. 1d87deb test_urlparse: add tests for encoding and errors arguments by Victor Stinner · 15 years ago
  51. ac71c54 Add encoding and errors arguments to urllib.parse_qs() and urllib.parse_qsl() by Victor Stinner · 15 years ago
  52. d958ea7 Issue 10899: Remove function type annotations from the stdlib by Raymond Hettinger · 15 years ago
  53. cbb8089 Issue #10899: Move function type annotations into docstrings. by Raymond Hettinger · 15 years ago
  54. 4d73b57 More PEP 8: no space around "=" in argument lists. by Georg Brandl · 15 years ago
  55. 00fa039 Issue 10899: Remove function type annotations from the stdlib by Raymond Hettinger · 15 years ago
  56. cd92f37 Issue 10899: Remove function type annotations from the stdlib by Raymond Hettinger · 15 years ago
  57. 3c94024 Issue #10899: No function type annotations in the standard library. by Raymond Hettinger · 15 years ago
  58. 1e28513 Fix test_bigaddrspace (some tests didn't trigger the expected MemoryError) by Antoine Pitrou · 15 years ago
  59. 98c62bd A better message again by Antoine Pitrou · 15 years ago
  60. e0d3f8a More informative skip message in @bigaddrspace by Antoine Pitrou · 15 years ago
  61. 9dd1171 Fix @bigmemtest when no limit is given by the user (oops) by Antoine Pitrou · 15 years ago
  62. aca5fa7 Make test skipping message nicer, and remove the rather useless "overhead" parameter. by Antoine Pitrou · 15 years ago
  63. 219c300 Remove the funky function annotation from numbers.py. by Raymond Hettinger · 15 years ago
  64. 45545f7 Fix the expected memory use of utf-8 encoding. Also, release the by Antoine Pitrou · 15 years ago
  65. b3d89a4 Remove function annotations that slipped into _abcoll. by Raymond Hettinger · 15 years ago
  66. 318b8f3 Issue #10822: Fix test_posix:test_getgroups failure under Solaris. Patch by Antoine Pitrou · 15 years ago
  67. 477ba91 don't segfault on deleting __abstractmethods__ #10892 by Benjamin Peterson · 15 years ago
  68. 5e8dada oops, wrong class by Benjamin Peterson · 15 years ago
  69. 1c02a44 move this test to test_descr; it's not abc specific by Benjamin Peterson · 15 years ago
  70. e993b10 Issue 10889: Support slicing and indexing of large ranges (no docs changes, since, as far as I know, we never said anywhere that this *didn't* work) by Nick Coghlan · 15 years ago
  71. 524359f Add comment. by Raymond Hettinger · 15 years ago
  72. ef4a03f Issue #5109: array.array constructor will now use fast code when by Alexander Belopolsky · 15 years ago
  73. 5cee47f Add entry for Barrier objects. by Raymond Hettinger · 15 years ago
  74. a3e8f3d Typo. by Eric Smith · 15 years ago
  75. 90be5fb Issue 10556: test_zipimport_support implicitly imports too many modules (including _ssl) to safely clobber sys.modules after each test by Nick Coghlan · 15 years ago
  76. a689241 This should fix mktime test on Windows by Alexander Belopolsky · 15 years ago
  77. 31c5dd6 Make mktime test more robust. by Alexander Belopolsky · 15 years ago
  78. b7d40d1 Issue #1726687: time.mktime() will now correctly compute value one by Alexander Belopolsky · 15 years ago
  79. a4815ca Issue #10872: The repr() of TextIOWrapper objects now includes the mode by Antoine Pitrou · 15 years ago
  80. d7e81cc #10874: test_urllib2 shouldn't use `is` operator for comparing strings by Łukasz Langa · 15 years ago
  81. efb6902 Add missing line. by Georg Brandl · 15 years ago
  82. 619e7ba #10869: do not visit root node twice in ast.increment_lineno(). by Georg Brandl · 15 years ago
  83. 5b2d9dd #5871: protect against header injection attacks. by R. David Murray · 15 years ago
  84. 5d938cb Add EHOSTUNREACH ('No route to host') to the errnos trapped by transient_internet(). by Antoine Pitrou · 15 years ago
  85. 160fd93 Fix test_ssl after r87849 by Antoine Pitrou · 15 years ago
  86. 67b212e Issue #10859: Make `contextlib.GeneratorContextManager` officially by Antoine Pitrou · 15 years ago
  87. 23f9fc3 Issue #10042: Fixed the total_ordering decorator to handle cross-type by Raymond Hettinger · 15 years ago
  88. f332abb test_ssl: test SHA256 using sha256.tbs-internet.com instead of sha2.hboeck.de by Victor Stinner · 15 years ago
  89. 301f121 Issue #1777412: Remove all limits on tm_year from time.strftime() by Victor Stinner · 15 years ago
  90. af5aee5 Issue #1777412: fix test_time for Mac OS X and OpenIndiana by Victor Stinner · 15 years ago
  91. 7369132 Issue #1777412: test large years value for strftime('%Y') by Victor Stinner · 15 years ago
  92. 73ea29c Issue #1777412: strftime() accepts year >= 1 instead of year >= 1900 by Victor Stinner · 15 years ago
  93. 0dd06f4 Fixed error handling branches. Thanks Victor Stinner for pointing this out. by Alexander Belopolsky · 15 years ago
  94. b8bb466 Issue #1777412: extended year range of strftime down to 1000. by Alexander Belopolsky · 15 years ago
  95. 9253214 #10686: recode non-ASCII headers to 'unknown-8bit' instead of ?s. by R. David Murray · 15 years ago
  96. 6f0022d Fix formatting of values with embedded newlines when rfc2047 encoding by R. David Murray · 15 years ago
  97. c64708a Issue #10827: Changed the rules for 2-digit years. The time.asctime by Alexander Belopolsky · 15 years ago
  98. 63eef1e Get --coverage to be an acceptable flag for test.regrtest again. by Brett Cannon · 15 years ago
  99. 610e544 Further simplify gettmarg() by Alexander Belopolsky · 15 years ago
  100. b715fac Issue #3839: wsgiref should not override a Content-Length header set by by Antoine Pitrou · 15 years ago