1. 7f0d888 Closes #14768: os.path.expanduser('~/a') doesn't works correctly when HOME is '/' by Jesus Cea · 12 years ago
  2. d576c71 Issue #14761: Fix potential leak on an error case in the import machinery. by Antoine Pitrou · 12 years ago
  3. da029fb Issue #14741: Fix missing support for ellipsis in parser module. by Mark Dickinson · 12 years ago
  4. 11c1dee Issue #14697: Fix missing parser module support for set displays and set comprehensions. by Mark Dickinson · 12 years ago
  5. cf360b9 Issue #14701: Add missing support for 'raise ... from' in parser module. by Mark Dickinson · 12 years ago
  6. 640335c Fix issue number in Misc/NEWS. by Mark Dickinson · 12 years ago
  7. 1b2e944 Issue #14965: Fix missing support for starred assignments in Tools/parser/unparse.py. by Mark Dickinson · 12 years ago
  8. 6cc7a41 #14034: added the argparse tutorial. Patch by Tshepang Lekhonkhobe. by Ezio Melotti · 12 years ago
  9. 7295c6a fix calling the classmethod descriptor directly (closes #14699) by Benjamin Peterson · 12 years ago
  10. 42d7081 issue13183 - Fix pdb skipping frames after hitting a breakpoint and running step. Patch by Xavier de Gaye by Senthil Kumaran · 12 years ago
  11. e654c11 Issue #14433: Prevent msvcrt crash in interactive prompt when stdin is closed. by Martin v. Löwis · 12 years ago
  12. 407b3bd Issue #14696: Fix parser module to understand 'nonlocal' declarations. by Mark Dickinson · 12 years ago
  13. 2420d83 Issue #10941: Fix imaplib.Internaldate2tuple to produce correct result near by Alexander Belopolsky · 12 years ago
  14. ea7e9f9 Issue #9154: Fix parser module to understand function annotations. by Mark Dickinson · 12 years ago
  15. 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
  16. 1ef9eda Issue #14160: TarFile.extractfile() failed to resolve symbolic links by Lars Gustäbel · 13 years ago
  17. 7b16687 don't use a slot wrapper from a different special method (closes #14658) by Benjamin Peterson · 13 years ago
  18. c43125a #14638: pydoc now treats non-str __name__ as None instead of raising by R David Murray · 13 years ago
  19. 88ec620 news for issue13684 by Senthil Kumaran · 13 years ago
  20. 2cc52ef add Mark Shannon by Benjamin Peterson · 13 years ago
  21. 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
  22. 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
  23. 63674f4 Issue #14629: Raise SyntaxError in tokenizer.detect_encoding by Martin v. Löwis · 13 years ago
  24. 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
  25. 10ac77d Close #14032: fix incorrect variable reference in test_cmd_line_script by Nick Coghlan · 13 years ago
  26. 0780b6b #14538: HTMLParser can now parse correctly start tags that contain a bare /. by Ezio Melotti · 13 years ago
  27. 2c14146 improve by Benjamin Peterson · 13 years ago
  28. e42fb30 SETUP_WITH acts like SETUP_FINALLY for the purposes of setting f_lineno (closes #14612) by Benjamin Peterson · 13 years ago
  29. 32c59b6 mangle keyword-only argname when loading defaults (closes #14607) by Benjamin Peterson · 13 years ago
  30. ee9e485 Closes #14452: remove BOM insertion code. by Vinay Sajip · 13 years ago
  31. aa292f9 Issue #14589: Update certificate chain for sha256.tbs-internet.com, fixing a test failure in test_ssl. by Antoine Pitrou · 13 years ago
  32. a13b109 Issue 13496: Fix bisect.bisect overflow bug for large collections. by Mark Dickinson · 13 years ago
  33. 18e3d81 Issue #13889: On MSVC builds, set FPU control word at runtime for all string <-> float conversions. Patch by Samuel Iseli and Stefan Krah. by Mark Dickinson · 13 years ago
  34. 650dfaf #14399: corrected news item by R David Murray · 13 years ago
  35. 51804e9 #14399: zipfile now correctly handles comments added to empty zipfiles. by R David Murray · 13 years ago
  36. 5739e10 Issue #14557: Fix extensions build on HP-UX. Patch by Adi Roiban. by Charles-François Natali · 13 years ago
  37. a51497a Merge 3.2.3 release clone. by Georg Brandl · 13 years ago
  38. 126aef7 Issue #8799: Fix and improve the threading.Condition documentation. by Antoine Pitrou · 13 years ago
  39. 4403601 Bump to 3.2.3 final. by Georg Brandl · 13 years ago
  40. 470f33f News entry for f91ecbc8bafc. by Georg Brandl · 13 years ago
  41. b0a9c66 Issue #7978: socketserver now restarts the select() call when EINTR is returned. by Antoine Pitrou · 13 years ago
  42. 1024541 Issue #14496: Fix wrong name in idlelib/tabbedpages.py. Patch by Popa Claudiu. by Andrew Svetlov · 13 years ago
  43. 6d20cba Issue #14482: Raise a ValueError, not a NameError, when trying to create by Antoine Pitrou · 13 years ago
  44. 984dfa7 Issue #14471: Fix a possible buffer overrun in the winreg module. by Kristján Valur Jónsson · 13 years ago
  45. e900096 prevent writing to stderr from messing up the exception state (closes #14474) by Benjamin Peterson · 13 years ago
  46. 709176f Issue #14151: Raise a ValueError, not a NameError, when trying to create by Antoine Pitrou · 13 years ago
  47. 58bb82e Issue #13019: Fix potential reference leaks in bytearray.extend(). by Antoine Pitrou · 13 years ago
  48. 70deb3d Issue #13872: socket.detach() now marks the socket closed (as mirrored in the socket repr()). by Antoine Pitrou · 13 years ago
  49. 6211b88 Issue #14437: Fix building the _io module under Cygwin. by Antoine Pitrou · 13 years ago
  50. f70401e Issue #14406: Fix a race condition when using `concurrent.futures.wait(return_when=ALL_COMPLETED)`. by Antoine Pitrou · 13 years ago
  51. f3c2976 update NEWS as Terry Reedy proposed by Andrew Svetlov · 13 years ago
  52. 67ac079 Issue #14409: IDLE doesn't not execute commands from shell with default keybinding for <Return>. by Andrew Svetlov · 13 years ago
  53. 4a65b0a issue 10340 - forgot to update Misc/NEWS by Giampaolo Rodola' · 13 years ago
  54. 0197ff9 Issue #14387: Do not include accu.h from Python.h. by Antoine Pitrou · 13 years ago
  55. a4e4e35 check by equality for __future__ not identity (closes #14378) by Benjamin Peterson · 13 years ago
  56. e112153 #12757: Make doctest skipping in -OO mode work with unittest/regrtest -v by R David Murray · 13 years ago
  57. 0f71f44 #3573: idle now doesn't hungs if launched as: idle -e <directory> by Andrew Svetlov · 13 years ago
  58. 7941736 Fix issue #13694: asynchronous connect in asyncore.dispatcher does not set addr. by Giampaolo Rodola' · 13 years ago
  59. 71faefc Issue #14359: Only use O_CLOEXEC in _posixmodule.c if it is defined. by Ross Lagerwall · 13 years ago
  60. c809f98 Fixes Issue #14331: Use significantly less stack space when importing modules by by Gregory P. Smith · 13 years ago
  61. 3187749 Merge 3.2.3rc2 from release clone. by Georg Brandl · 13 years ago
  62. 1eb0f9d Post-release updates for 3.2.3rc2. by Georg Brandl · 13 years ago
  63. 226af70 Bump to 3.2.3rc2. by Georg Brandl · 13 years ago
  64. 5ab8817 Move MANIFEST parsing change to the right position. by Georg Brandl · 13 years ago
  65. eebe111 #11686: news entry. by R David Murray · 13 years ago
  66. 16d84ac check to make sure the attribute is a string (#14334) by Benjamin Peterson · 13 years ago
  67. be3f851 closes issue10484 - Fix the http.server's cgi PATH_INFO handling problem by Senthil Kumaran · 13 years ago
  68. 73277fe closes Issue #11199: Fix the with urllib which hangs on particular ftp urls. by Senthil Kumaran · 13 years ago
  69. a5d729a Transplant from main repo d6c197edd99b: Fixes Issue #14234: CVE-2012-0876: Randomize hashes of xml attributes by Georg Brandl · 13 years ago
  70. 373c740 Fixes Issue #14234: CVE-2012-0876: Randomize hashes of xml attributes by Gregory P. Smith · 13 years ago
  71. 8e91cf6 Fixes issue #14234: CVE-2012-0876: Randomize hashes of xml attributes by Gregory P. Smith · 13 years ago
  72. 9fd170e #14062: fix BytesParser handling of linesep for Header objects by R David Murray · 13 years ago
  73. 7441a7a #14291: if a header has non-ascii unicode, default to CTE using utf-8 by R David Murray · 13 years ago
  74. eb945a9 Issue #5219: Prevent event handler cascade in IDLE. Patch by Roger Serwy. by Martin v. Löwis · 13 years ago
  75. 7ca97d5 Issue #14184: Increase the default stack size for secondary threads on by Ned Deily · 13 years ago
  76. e01c62c Fix unittest test discovery for Jython by Michael Foord · 13 years ago
  77. df723e1 #14179: add tests for re.compile. Patch by Florian Mladitsch. by Ezio Melotti · 13 years ago
  78. 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
  79. 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
  80. dae9f83 this stuff will actually be new in 3.2.4 by Benjamin Peterson · 13 years ago
  81. 52c4243 allow cycles throught the __dict__ slot to be cleared (closes #1469629) by Benjamin Peterson · 13 years ago
  82. 1ae230a merge heads by Benjamin Peterson · 13 years ago
  83. e48944b keep the buffer object around while we're using it (closes #14212) by Benjamin Peterson · 13 years ago
  84. a420c82 Backout buggy patch committed for #13719 by Éric Araujo · 13 years ago
  85. e413c06 Make distutils’ upload command work with bdist_msi products (#13719). by Éric Araujo · 13 years ago
  86. 653f932 Issue #14195: Make WeakSet.__lt__ and WeakSet.__gt__ irreflexive. by Meador Inge · 13 years ago
  87. 4a90ef0 Issue #14177: marshal.loads() now raises TypeError when given an unicode string. by Antoine Pitrou · 13 years ago
  88. 679e9d3 Issue #14172: Fix reference leak when marshalling a buffer-like object (other than a bytes object). by Antoine Pitrou · 13 years ago
  89. bbe2f60 Issue #14159: Fix the len() of weak containers (WeakSet, WeakKeyDictionary, WeakValueDictionary) to return a better approximation when some objects are dead or dying. by Antoine Pitrou · 13 years ago
  90. d311374 Issue #13125: Silence spurious test_lib2to3 output when in non-verbose mode. by Antoine Pitrou · 13 years ago
  91. e965d97 Issue #13521: dict.setdefault() now does only one lookup for the given key, making it "atomic" for many purposes. by Antoine Pitrou · 13 years ago
  92. 48605a6 3.2.3rc1 done by Georg Brandl · 13 years ago
  93. e7295a7 Add news entry for previous commit by Éric Araujo · 13 years ago
  94. 29b9255 Fix long-standing bugs with MANIFEST.in parsing on Windows (#6884). by Éric Araujo · 13 years ago
  95. 2e0a0e1 Fix long-standing bugs with MANIFEST.in parsing on Windows (#6884). by Éric Araujo · 13 years ago
  96. afe05bd Bump version to 3.2.3rc1. by Georg Brandl · 13 years ago
  97. 36a6558 version now 3.1.5rc1 by Benjamin Peterson · 13 years ago
  98. 4f22a8d Issue #14084: Fix a file descriptor leak when importing a module with a bad encoding. by Antoine Pitrou · 13 years ago
  99. 9f64f73 Issue #14053: Fix "make patchcheck" to work with MQ. by Nadeem Vawda · 13 years ago
  100. 7ef825f merge with 3.2 by Georg Brandl · 13 years ago