1. 1682e5d Issue #14157: Fix time.strptime failing without a year on February 29th. by Antoine Pitrou · 13 years ago
  2. 7f0d888 Closes #14768: os.path.expanduser('~/a') doesn't works correctly when HOME is '/' by Jesus Cea · 13 years ago
  3. 3b66623 remove basically bitrotted XXXs by Benjamin Peterson · 13 years ago
  4. da029fb Issue #14741: Fix missing support for ellipsis in parser module. by Mark Dickinson · 13 years ago
  5. 11c1dee Issue #14697: Fix missing parser module support for set displays and set comprehensions. by Mark Dickinson · 13 years ago
  6. cf360b9 Issue #14701: Add missing support for 'raise ... from' in parser module. by Mark Dickinson · 13 years ago
  7. b4c8902 #13183: backport fixes to test_pdb to 3.2 branch by Georg Brandl · 13 years ago
  8. 7ef909c Fix for issue 14725 for 3.2 branch by Richard Oudkerk · 13 years ago
  9. 16f6f83 Fix test connecting to sha256.tbs-internet.com. by Antoine Pitrou · 13 years ago
  10. 89282af Changed order of cleanup operations to be more sensible. by Vinay Sajip · 13 years ago
  11. 39687ee os.popen().close() returns None on success, not 0... by Charles-François Natali · 13 years ago
  12. e8a255a Issue #14698: Make test_posix more robust when the current UID doesn't have an by Charles-François Natali · 13 years ago
  13. cb17204 fix windows test failure - issue13183 by Senthil Kumaran · 13 years ago
  14. 7295c6a fix calling the classmethod descriptor directly (closes #14699) by Benjamin Peterson · 13 years ago
  15. 42d7081 issue13183 - Fix pdb skipping frames after hitting a breakpoint and running step. Patch by Xavier de Gaye by Senthil Kumaran · 13 years ago
  16. b8f02b5 fixed test_imaplib failure on Win by Alexander Belopolsky · 13 years ago
  17. 407b3bd Issue #14696: Fix parser module to understand 'nonlocal' declarations. by Mark Dickinson · 13 years ago
  18. 2420d83 Issue #10941: Fix imaplib.Internaldate2tuple to produce correct result near by Alexander Belopolsky · 13 years ago
  19. ea7e9f9 Issue #9154: Fix parser module to understand function annotations. by Mark Dickinson · 13 years ago
  20. 3899283 #14236: fix docs for \S. by Ezio Melotti · 13 years ago
  21. db727b4 Fix issue6085 - Remove the delay caused by fqdn lookup while logging in BaseHTTPRequestHandler by Senthil Kumaran · 13 years ago
  22. e990092 #14236: mention Unicode whitespace in \s documentation. by Ezio Melotti · 13 years ago
  23. 7e70a5c httplib - minor update to check empty response by Senthil Kumaran · 13 years ago
  24. 9c29f86 httplib test for early eof response. related to Issue13684 by Senthil Kumaran · 13 years ago
  25. b05ac86 Issue #14664: It is now possible to use @unittest.skip{If,Unless} on a test class that doesn't inherit from TestCase (i.e. a mixin). by Antoine Pitrou · 13 years ago
  26. c2ad0aa Fixed test to work on Windows. by Vinay Sajip · 13 years ago
  27. 66b8b08 Issue #14632: Updated WatchedFileHandler to deal with race condition. Thanks to John Mulligan for the problem report and patch. by Vinay Sajip · 13 years ago
  28. 1ef9eda Issue #14160: TarFile.extractfile() failed to resolve symbolic links by Lars Gustäbel · 13 years ago
  29. 7b16687 don't use a slot wrapper from a different special method (closes #14658) by Benjamin Peterson · 13 years ago
  30. c43125a #14638: pydoc now treats non-str __name__ as None instead of raising by R David Murray · 13 years ago
  31. b12771a 3.2 - Fix for Issue13684 - httplib tunnel infinite loop by Senthil Kumaran · 13 years ago
  32. 7a436c5 sleep here by Benjamin Peterson · 13 years ago
  33. 37fc401 Close issue #14026 by better testing sys.argv handling in test_cmd_line_script (patch by Jason Yeo) by Nick Coghlan · 13 years ago
  34. bcc17ee Issue #14630: Fix an incorrect access of ob_digit[0] for a zero instance of an int subclass. by Mark Dickinson · 13 years ago
  35. 63674f4 Issue #14629: Raise SyntaxError in tokenizer.detect_encoding by Martin v. Löwis · 13 years ago
  36. 8e6e0fd Issue #14308: Fix an exception when a "dummy" thread is in the threading module's active list after a fork(). by Antoine Pitrou · 13 years ago
  37. 10ac77d Close #14032: fix incorrect variable reference in test_cmd_line_script by Nick Coghlan · 13 years ago
  38. 0780b6b #14538: HTMLParser can now parse correctly start tags that contain a bare /. by Ezio Melotti · 13 years ago
  39. e42fb30 SETUP_WITH acts like SETUP_FINALLY for the purposes of setting f_lineno (closes #14612) by Benjamin Peterson · 13 years ago
  40. 32c59b6 mangle keyword-only argname when loading defaults (closes #14607) by Benjamin Peterson · 13 years ago
  41. ab2d58e Issue #5113: Fix a test_posix failure on HP-UX, where non-root users can by Charles-François Natali · 13 years ago
  42. ee9e485 Closes #14452: remove BOM insertion code. by Vinay Sajip · 13 years ago
  43. aa292f9 Issue #14589: Update certificate chain for sha256.tbs-internet.com, fixing a test failure in test_ssl. by Antoine Pitrou · 13 years ago
  44. a13b109 Issue 13496: Fix bisect.bisect overflow bug for large collections. by Mark Dickinson · 13 years ago
  45. 51804e9 #14399: zipfile now correctly handles comments added to empty zipfiles. by R David Murray · 13 years ago
  46. d70846b 3.2 - Issue 10484 - Incorporate improvements to CGI module - Suggested by Glenn Linderman. Refactor code and tests by Senthil Kumaran · 13 years ago
  47. a51497a Merge 3.2.3 release clone. by Georg Brandl · 13 years ago
  48. dbb369d 3.2- fix the incorrect changes made for PATH_INFO value - Issue10484 by Senthil Kumaran · 13 years ago
  49. 4403601 Bump to 3.2.3 final. by Georg Brandl · 13 years ago
  50. c0aa9ee Fix the patch for issue #7978: select() raises select.error before 3.3, not OSError. by Antoine Pitrou · 13 years ago
  51. f18d6f3 Fix flakiness in test_socketserver by Antoine Pitrou · 13 years ago
  52. b0a9c66 Issue #7978: socketserver now restarts the select() call when EINTR is returned. by Antoine Pitrou · 13 years ago
  53. 317c8d2 Make test_mailbox runnable via python -m unittest. by R David Murray · 13 years ago
  54. d3af634 #14492: fix some bugs in Tools/scripts/pdeps.py. by R David Murray · 13 years ago
  55. 1024541 Issue #14496: Fix wrong name in idlelib/tabbedpages.py. Patch by Popa Claudiu. by Andrew Svetlov · 13 years ago
  56. ca60b36 test_tools fix: don't import analyze_dxp if no _thread module by R David Murray · 13 years ago
  57. 54ac832 #14490, #14491: add 'sundry'-style import tests for Tools/scripts. by R David Murray · 13 years ago
  58. b604630 Closes #14495: fix typo. by Georg Brandl · 13 years ago
  59. 6d20cba Issue #14482: Raise a ValueError, not a NameError, when trying to create by Antoine Pitrou · 13 years ago
  60. 6215444 remove uneeded line by Benjamin Peterson · 13 years ago
  61. e900096 prevent writing to stderr from messing up the exception state (closes #14474) by Benjamin Peterson · 13 years ago
  62. 709176f Issue #14151: Raise a ValueError, not a NameError, when trying to create by Antoine Pitrou · 13 years ago
  63. 70deb3d Issue #13872: socket.detach() now marks the socket closed (as mirrored in the socket repr()). by Antoine Pitrou · 13 years ago
  64. f70401e Issue #14406: Fix a race condition when using `concurrent.futures.wait(return_when=ALL_COMPLETED)`. by Antoine Pitrou · 13 years ago
  65. de0f629 #14434: make tutorial link in 'help' banner version-specific by R David Murray · 13 years ago
  66. f3c2976 update NEWS as Terry Reedy proposed by Andrew Svetlov · 13 years ago
  67. 6f5e54e Closes #14436: Convert msg + args to string before pickling. by Vinay Sajip · 13 years ago
  68. 67ac079 Issue #14409: IDLE doesn't not execute commands from shell with default keybinding for <Return>. by Andrew Svetlov · 13 years ago
  69. d864407 Closes #14411: remove outdated comment in rlcompleter docstring. by Georg Brandl · 13 years ago
  70. 8e6fe64 Issue #13902: Fix a random test_threading failure on FreeBSD 6 buildbots (due by Charles-François Natali · 13 years ago
  71. ee64b28 Closes #14314: backported fix. by Vinay Sajip · 13 years ago
  72. a3481e7 attempt to fix asyncore buildbot failure by Giampaolo Rodola' · 13 years ago
  73. 350c94b fix #10340: properly handle EINVAL on OSX and also avoid to call handle_connect() in case of a disconnetected socket which is not meant to connect. by Giampaolo Rodola' · 13 years ago
  74. a4e4e35 check by equality for __future__ not identity (closes #14378) by Benjamin Peterson · 13 years ago
  75. e112153 #12757: Make doctest skipping in -OO mode work with unittest/regrtest -v by R David Murray · 13 years ago
  76. 0f71f44 #3573: idle now doesn't hungs if launched as: idle -e <directory> by Andrew Svetlov · 13 years ago
  77. 7941736 Fix issue #13694: asynchronous connect in asyncore.dispatcher does not set addr. by Giampaolo Rodola' · 13 years ago
  78. 3187749 Merge 3.2.3rc2 from release clone. by Georg Brandl · 13 years ago
  79. 226af70 Bump to 3.2.3rc2. by Georg Brandl · 13 years ago
  80. c6bfce9 #14333: fix test_queue so it can be run via standard unittest test discovery. by R David Murray · 13 years ago
  81. 1b6c724 #11686: add missing entries to email __all__ lists. by R David Murray · 13 years ago
  82. 16d84ac check to make sure the attribute is a string (#14334) by Benjamin Peterson · 13 years ago
  83. be3f851 closes issue10484 - Fix the http.server's cgi PATH_INFO handling problem by Senthil Kumaran · 13 years ago
  84. 6b3434a Explain the use of charset parameter with Content-Type header. Issue11082 by Senthil Kumaran · 13 years ago
  85. 73277fe closes Issue #11199: Fix the with urllib which hangs on particular ftp urls. by Senthil Kumaran · 13 years ago
  86. 9fd170e #14062: fix BytesParser handling of linesep for Header objects by R David Murray · 13 years ago
  87. 7441a7a #14291: if a header has non-ascii unicode, default to CTE using utf-8 by R David Murray · 13 years ago
  88. eb945a9 Issue #5219: Prevent event handler cascade in IDLE. Patch by Roger Serwy. by Martin v. Löwis · 13 years ago
  89. 69437da Merged upstream change. by Vinay Sajip · 13 years ago
  90. 27f4897 Closes #14267: Corrected computation of rollover filename. by Vinay Sajip · 13 years ago
  91. 47b5ddb 3.2 - Fix closes Issue14281 - Test for cgi.escape by Brian Landers by Senthil Kumaran · 13 years ago
  92. e01c62c Fix unittest test discovery for Jython by Michael Foord · 13 years ago
  93. df723e1 #14179: add tests for re.compile. Patch by Florian Mladitsch. by Ezio Melotti · 13 years ago
  94. 1d4798c Merge heads. by Eric V. Smith · 13 years ago
  95. edbb6ca str.format_map tests don't do what they say: fix to actually implement the intent of the test. Closes #13450. by Eric V. Smith · 13 years ago
  96. 8576953 #13394: add more tests for the aifc module. Patch by Oleg Plakhotnyuk. by Ezio Melotti · 13 years ago
  97. ef87f06 allow AST objects to be like its subclasses by Benjamin Peterson · 13 years ago
  98. d279e28 every other ast object has a dict, so I think AST should, too by Benjamin Peterson · 13 years ago
  99. 1f9a835 Issue #14252: Fix subprocess.Popen.terminate() to not raise an error under Windows when the child process has already exited. by Antoine Pitrou · 13 years ago
  100. e144c74 Closes #14244: add info about capturing groups and maxsplit to the docstring of re.split(). by Georg Brandl · 13 years ago