1. afb5205 Close #14249: Use bit shifts instead of an union, it's more efficient. by Victor Stinner · 12 years ago
  2. dfe980b Issue #8515: Set __file__ when run file in IDLE. by Andrew Svetlov · 12 years ago
  3. 73d2da4 Merge from 3.2 by Andrew Svetlov · 12 years ago
  4. 1024541 Issue #14496: Fix wrong name in idlelib/tabbedpages.py. Patch by Popa Claudiu. by Andrew Svetlov · 12 years ago
  5. 20bbf54 Issue #3033: Add displayof parameter to tkinter font. Patch by Guilherme Polo. by Andrew Svetlov · 12 years ago
  6. 4f61a2d A few tweaks to whatsnew/3.3 (fixes #14362) by Éric Araujo · 12 years ago
  7. da80b1e - Issue #14493: Use gvfs-open/xdg-open in Lib/webbrowser.py. by Matthias Klose · 12 years ago
  8. 5c73e8e Issue #14482: Raise a ValueError, not a NameError, when trying to create by Antoine Pitrou · 12 years ago
  9. 6d20cba Issue #14482: Raise a ValueError, not a NameError, when trying to create by Antoine Pitrou · 12 years ago
  10. 8f639e0 Issue #14288: Modify Misc/NEWS by Kristján Valur Jónsson · 12 years ago
  11. 39f0037 Issue #802310: Generate always unique tkinter font names if not directly passed by Andrew Svetlov · 12 years ago
  12. 2247775 Merge with 3.2 (Issue #14471) by Kristján Valur Jónsson · 12 years ago
  13. dba1b40 merge 3.2 by Benjamin Peterson · 12 years ago
  14. 984dfa7 Issue #14471: Fix a possible buffer overrun in the winreg module. by Kristján Valur Jónsson · 12 years ago
  15. e900096 prevent writing to stderr from messing up the exception state (closes #14474) by Benjamin Peterson · 12 years ago
  16. f4228b0 Merge. by Georg Brandl · 12 years ago
  17. d3fca8e Post-release update. by Georg Brandl · 12 years ago
  18. 93bba8f Issue #14151: Raise a ValueError, not a NameError, when trying to create by Antoine Pitrou · 12 years ago
  19. 709176f Issue #14151: Raise a ValueError, not a NameError, when trying to create by Antoine Pitrou · 12 years ago
  20. 29b964d Issue #13019: Fix potential reference leaks in bytearray.extend(). by Antoine Pitrou · 12 years ago
  21. 58bb82e Issue #13019: Fix potential reference leaks in bytearray.extend(). by Antoine Pitrou · 12 years ago
  22. 50af011 Bump to 3.3.0a2. by Georg Brandl · 12 years ago
  23. 9a54a26 Issue #14300: Under Windows, sockets created using socket.dup() now allow overlapped I/O. by Antoine Pitrou · 12 years ago
  24. 8315f96 Issue #13872: socket.detach() now marks the socket closed (as mirrored in the socket repr()). by Antoine Pitrou · 12 years ago
  25. 70deb3d Issue #13872: socket.detach() now marks the socket closed (as mirrored in the socket repr()). by Antoine Pitrou · 12 years ago
  26. 6211b88 Issue #14437: Fix building the _io module under Cygwin. by Antoine Pitrou · 12 years ago
  27. 8b34b53 Issue #14406: Fix a race condition when using `concurrent.futures.wait(return_when=ALL_COMPLETED)`. by Antoine Pitrou · 12 years ago
  28. f70401e Issue #14406: Fix a race condition when using `concurrent.futures.wait(return_when=ALL_COMPLETED)`. by Antoine Pitrou · 12 years ago
  29. 29e665d fix typo by Andrew Svetlov · 12 years ago
  30. 9e892bb fix issue #5136: deprecate old unused functions from tkinter. by Andrew Svetlov · 12 years ago
  31. d4bb972 Issue #14435: Add Misc/NEWS and Misc/ACKS by Kristján Valur Jónsson · 12 years ago
  32. 78a0f20 Merge from 3.2 by Andrew Svetlov · 12 years ago
  33. f3c2976 update NEWS as Terry Reedy proposed by Andrew Svetlov · 12 years ago
  34. d3cebd7 Merge with 3.2 by Andrew Svetlov · 12 years ago
  35. 8640743 Issue #14442: Add missing errno import in test_smtplib. by Ross Lagerwall · 12 years ago
  36. 67ac079 Issue #14409: IDLE doesn't not execute commands from shell with default keybinding for <Return>. by Andrew Svetlov · 12 years ago
  37. eac0939 #14416: conditionally add LOG_AUTHPRIV facility and LOG_ODELAY to syslog. by R David Murray · 12 years ago
  38. 1641bb7 Fix typo by Éric Araujo · 12 years ago
  39. d543f2b IDLE can be launched as python -m ildelib by Andrew Svetlov · 12 years ago
  40. 313f85f unittest.mock.MagicMock objects are now unorderable by default by Michael Foord · 12 years ago
  41. 60187b5 Issue #7652: Enable linking of _decimal.so against an installed libmpdec. by Stefan Krah · 12 years ago
  42. 8680bcc #14380: Have MIMEText defaults to utf-8 when passed non-ASCII unicode by R David Murray · 12 years ago
  43. f4ce114 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' · 12 years ago
  44. 4a65b0a issue 10340 - forgot to update Misc/NEWS by Giampaolo Rodola' · 12 years ago
  45. d0acb41 Issue #14387: Do not include accu.h from Python.h. by Antoine Pitrou · 12 years ago
  46. 0197ff9 Issue #14387: Do not include accu.h from Python.h. by Antoine Pitrou · 12 years ago
  47. 98ba753 merge 3.2 (#14378) by Benjamin Peterson · 12 years ago
  48. a4e4e35 check by equality for __future__ not identity (closes #14378) by Benjamin Peterson · 12 years ago
  49. 96ad261 Fix typo. by Georg Brandl · 12 years ago
  50. d5d17eb Issue #14204: The ssl module now has support for the Next Protocol Negotiation extension, if available in the underlying OpenSSL library. by Antoine Pitrou · 12 years ago
  51. a966c6f Issue #3035: Unused functions from tkinter are marked as pending peprecated. by Andrew Svetlov · 12 years ago
  52. 1da08e7 Merge #12757: Make doctest skipping in -OO mode work with unittest/regrtest -v by R David Murray · 12 years ago
  53. e112153 #12757: Make doctest skipping in -OO mode work with unittest/regrtest -v by R David Murray · 12 years ago
  54. 1919b7e Issue #7652: Integrate the decimal floating point libmpdec library to speed by Stefan Krah · 12 years ago
  55. 206d2a4 Merge from 3.2 for issue #3573, fix Misc/NEWS as Ned Deily guess. by Andrew Svetlov · 12 years ago
  56. 0f71f44 #3573: idle now doesn't hungs if launched as: idle -e <directory> by Andrew Svetlov · 12 years ago
  57. 6b6e437 #3573: idle now doesn't hungs if launched as: idle -e <directory> by Andrew Svetlov · 12 years ago
  58. 669b755 #14269: smtpd now conforms to the RFC and requires HELO before MAIL. by R David Murray · 12 years ago
  59. 7941736 Fix issue #13694: asynchronous connect in asyncore.dispatcher does not set addr. by Giampaolo Rodola' · 12 years ago
  60. 2a88641 Fix issue #13694: asynchronous connect in asyncore.dispatcher does not set addr. by Giampaolo Rodola' · 12 years ago
  61. 6d3a575 Merge with 3.2 for #14359. by Ross Lagerwall · 12 years ago
  62. 71faefc Issue #14359: Only use O_CLOEXEC in _posixmodule.c if it is defined. by Ross Lagerwall · 12 years ago
  63. c809f98 Fixes Issue #14331: Use significantly less stack space when importing modules by by Gregory P. Smith · 12 years ago
  64. 3187749 Merge 3.2.3rc2 from release clone. by Georg Brandl · 12 years ago
  65. 1eb0f9d Post-release updates for 3.2.3rc2. by Georg Brandl · 12 years ago
  66. 226af70 Bump to 3.2.3rc2. by Georg Brandl · 12 years ago
  67. bd53809 #14344: fixed the repr of email.policy objects. by R David Murray · 12 years ago
  68. 87b7cde Issue #14347: Update Misc/README list of files. by Ned Deily · 12 years ago
  69. 5ab8817 Move MANIFEST parsing change to the right position. by Georg Brandl · 12 years ago
  70. d845450 merge heads by Benjamin Peterson · 12 years ago
  71. 96384b9 make extra arguments to object.__init__/__new__ to errors in most cases (finishes #1683368) by Benjamin Peterson · 12 years ago
  72. 970952b Merge #11686: news entry. by R David Murray · 12 years ago
  73. eebe111 #11686: news entry. by R David Murray · 12 years ago
  74. 846fd30 Issue #14335: multiprocessing's custom Pickler subclass now inherits from the C-accelerated implementation. by Antoine Pitrou · 12 years ago
  75. de39454 merge 3.2 (#14334) by Benjamin Peterson · 12 years ago
  76. 16d84ac check to make sure the attribute is a string (#14334) by Benjamin Peterson · 12 years ago
  77. e60d2d9 merge by Raymond Hettinger · 12 years ago
  78. ec0e910 Improve the memory utilization (and speed) of functools.lru_cache(). by Raymond Hettinger · 12 years ago
  79. 209d70e closes issue10484 - Fix the http.server's cgi PATH_INFO handling problem by Senthil Kumaran · 12 years ago
  80. be3f851 closes issue10484 - Fix the http.server's cgi PATH_INFO handling problem by Senthil Kumaran · 12 years ago
  81. df2aecb - Issue #14327: Call AC_CANONICAL_HOST in configure.ac and check in by Matthias Klose · 12 years ago
  82. ca2f6ec - Issue #14327: Call AC_CANONICAL_HOST in configure.ac and check in by Matthias Klose · 12 years ago
  83. 3270d11 port from 3.2 - Fix the urllib closing issue which hangs on particular ftp urls/ftp servers. closes issue11199 by Senthil Kumaran · 12 years ago
  84. 73277fe closes Issue #11199: Fix the with urllib which hangs on particular ftp urls. by Senthil Kumaran · 12 years ago
  85. 3b739b1 - Issue #14324: Fix configure tests for cross builds. by Matthias Klose · 12 years ago
  86. 93a0ef1 - Issue #14321: Do not run pgen during the build if files are up to date. by Matthias Klose · 12 years ago
  87. a5d729a Transplant from main repo d6c197edd99b: Fixes Issue #14234: CVE-2012-0876: Randomize hashes of xml attributes by Georg Brandl · 12 years ago
  88. 3d7c878 Issue #14222: Use the new time.steady() function instead of time.time() for by Victor Stinner · 12 years ago
  89. 1a5e5de remove get_prefix and set_prefix (#13248) by Benjamin Peterson · 12 years ago
  90. 70c9c4d Fixes Issue #14234: CVE-2012-0876: Randomize hashes of xml attributes by Gregory P. Smith · 12 years ago
  91. 373c740 Fixes Issue #14234: CVE-2012-0876: Randomize hashes of xml attributes by Gregory P. Smith · 12 years ago
  92. 8e91cf6 Fixes issue #14234: CVE-2012-0876: Randomize hashes of xml attributes by Gregory P. Smith · 12 years ago
  93. b53da6e Merge from tip by Andrew Svetlov · 12 years ago
  94. 05bab93 Issue #14200: Idle shell crash on printing non-BMP unicode character. by Andrew Svetlov · 12 years ago
  95. b53319f #12818: remove escaping of () in quoted strings in formataddr by R David Murray · 12 years ago
  96. 8d8f110 #14062: fix BytesParser handling of Header objects by R David Murray · 12 years ago
  97. 9fd170e #14062: fix BytesParser handling of linesep for Header objects by R David Murray · 12 years ago
  98. 9d8c186 Issue #13839: When invoked on the command-line, the pstats module now accepts several filenames of profile stat files and merges them all. by Antoine Pitrou · 12 years ago
  99. e292283 Merge #14291: if a header has non-ascii unicode, default to CTE using utf-8 by R David Murray · 12 years ago
  100. 7441a7a #14291: if a header has non-ascii unicode, default to CTE using utf-8 by R David Murray · 12 years ago