1. 6a570d6 Issue #13373: multiprocessing.Queue.get() could sometimes block indefinitely by Antoine Pitrou · 13 years ago
  2. cb65f32 Partial patch for issue #11812: Take care of test_telnetlib.py by Jesus Cea · 13 years ago
  3. 71094b5 Solved a potential deadlock in test_telnetlib.py. Related to issue #11812 by Jesus Cea · 13 years ago
  4. 53703d9 Closes #13361: Raise correct exception type. by Vinay Sajip · 13 years ago
  5. 74ab344 Closes #13661: Check added for type of logger name. by Vinay Sajip · 13 years ago
  6. caf0272 Closes #13356. Thanks to Florent Xicluna for the patch. by Vinay Sajip · 13 years ago
  7. 5df091a Closes issue #13353: version doumentation about utc parameter corrected. by Vinay Sajip · 13 years ago
  8. 3b9d92a Revert "Accept None as start and stop parameters for list.index() and tuple.index()" by Petri Lehtinen · 13 years ago
  9. 030aa35 Silence a couple of warnings. by Ezio Melotti · 13 years ago
  10. b22c3fe Fix another callable warning. by Ezio Melotti · 13 years ago
  11. 152d61a Fix tests now that the callable warning is gone. by Ezio Melotti · 13 years ago
  12. a5ae1f0 remove py3k warning for callable by Benjamin Peterson · 13 years ago
  13. 819d8d4 Accept None as start and stop parameters for list.index() and tuple.index() by Petri Lehtinen · 13 years ago
  14. 972ba9e Add missing versionadded (fixes #12392) by Éric Araujo · 13 years ago
  15. 416ecff Issue #3067: Enhance the documentation and docstring of locale.setlocale() by Petri Lehtinen · 13 years ago
  16. 49aa72e Fix Maildir initialization so that maildir contents are read correctly. by Petri Lehtinen · 13 years ago
  17. 5d19b9a Fix typos by Raymond Hettinger · 13 years ago
  18. 2e2cc6f Add .gitignore by Petri Lehtinen · 13 years ago
  19. 23ca12a Inline the advisory text on how to use the shelve module. by Raymond Hettinger · 13 years ago
  20. ce7554f Revert commit that was not a bugfix (#5301). by Éric Araujo · 13 years ago
  21. 5f761d7 Issue #13140: Fix the daemon_threads attribute of ThreadingMixIn. by Florent Xicluna · 13 years ago
  22. 09f8714 Issue #13308: Fix test_httpservers failures when run as root. by Charles-François Natali · 13 years ago
  23. 0fc13ae Fix Issue13147 - Correct the Multiprocessing Pool.map_async method signature. by Senthil Kumaran · 13 years ago
  24. b82cbc3 Fix merge in changeset e1dde980a92c. by Florent Xicluna · 13 years ago
  25. c4a11bd Missing NEWS entry in changeset e1dde980a92c by Florent Xicluna · 13 years ago
  26. 0965ee2 Issue #2892: preserve iterparse events in case of SyntaxError by Florent Xicluna · 13 years ago
  27. 7e82b27 #670664: Fix HTMLParser to correctly handle the content of ``<script>...</script>`` and ``<style>...</style>``. by Ezio Melotti · 13 years ago
  28. 1f3b84f correct signature for tzinfo.dst() in examples; thanks to Daniil Shved from docs@ by Sandro Tosi · 13 years ago
  29. 1aacd7b Issue #13304: Skip test case if user site-packages disabled (-s or by Ned Deily · 13 years ago
  30. cf9943d Backout redundant changeset 1de4d92cd6a4 by Antoine Pitrou · 13 years ago
  31. 87e5855 Port to 2.7 - issue 10817 - Fix urlretrieve function to raise by Senthil Kumaran · 13 years ago
  32. 236c0ea merge heads by Sandro Tosi · 13 years ago
  33. 73ce5e7 really use backticks in string conversion definition; thanks to Jonathan Blakes from docs@ by Sandro Tosi · 13 years ago
  34. 39aec01 test_protocol_sslv2(): Skip this test if ssl.PROTOCOL_SSLv2 is not by Barry Warsaw · 13 years ago
  35. c4114ea use diveintopython.net now that DIP.org returns 410; thanks to Josh Gachnang from docs@ by Sandro Tosi · 13 years ago
  36. c93e413 remove confusing paragraph (as part of r87523); thanks to AJ Hill from docs@ by Sandro Tosi · 13 years ago
  37. e4ae5f7 Closes #13283: removal of two unused variable in locale.py by Jesus Cea · 13 years ago
  38. 42f06d2 merge closing of 2.5 branch by Martin v. Löwis · 13 years ago
  39. 141e770 merge closing of 2.5 branch by Martin v. Löwis · 13 years ago
  40. e5b9bff 2.5 is no longer maintained by Martin v. Löwis · 13 years ago
  41. a9db763 document turtle mainloop()/done() functions; thanks to Csaba Szepesvari from docs@ by Sandro Tosi · 13 years ago
  42. 86d669b Issue 13296: Fix IDLE to clear compile __future__ flags on shell restart. by Ned Deily · 13 years ago
  43. f45501d caught is the right pp of catch; thanks to Don Bennett from docs@ by Sandro Tosi · 13 years ago
  44. 187aa26 Improve itertools docs with clearer examples of pure python equivalent code. by Raymond Hettinger · 13 years ago
  45. e11a47e Issue 13274: Make the pure python code for heapq more closely match the C implementation for an undefined corner case. by Raymond Hettinger · 13 years ago
  46. 6361ea2 Remove unstable SSL tests in the absence of ssl.OP_NO_{SSLv2,SSLv3,TLSv1} by Antoine Pitrou · 13 years ago
  47. 8028dc2 Add Misc/NEWS entry for issue #10519 by Petri Lehtinen · 13 years ago
  48. e3b5eda remove unused variable by Benjamin Peterson · 13 years ago
  49. a39de11 Fix the return value of set_discard (issue #10519) by Petri Lehtinen · 13 years ago
  50. 5f4d870 Avoid unnecessary recursive function calls (closes #10519) by Petri Lehtinen · 13 years ago
  51. 59dba38 Add a button to the code examples in the doc to show/hide the prompts and output. by Ezio Melotti · 13 years ago
  52. ef4e2fa #13289: fix typo. by Ezio Melotti · 13 years ago
  53. 67d5d0e Closes #7334: close source files on ElementTree.parse and iterparse (partial backport of issue #10093 from 3.2). by Florent Xicluna · 13 years ago
  54. e96102b bring is_integer into tested existence by Benjamin Peterson · 13 years ago
  55. bf0cafa Oops, put fix news in the right section. by Barry Warsaw · 13 years ago
  56. be83698 - Issue #13218: Fix test_ssl failures on Debian/Ubuntu. by Barry Warsaw · 13 years ago
  57. 8703352 Minor fixes to the HTMLParser doc. by Ezio Melotti · 13 years ago
  58. f9cc80d Improve HTMLParser example in the doc. by Ezio Melotti · 13 years ago
  59. 24c5180 #13278: fix typo. by Ezio Melotti · 13 years ago
  60. e6fda85 Added lost documentation cross-reference. by Vinay Sajip · 13 years ago
  61. 7789f27 adjust for change in assert bytecode by Benjamin Peterson · 13 years ago
  62. 85c46b1 merge heads by Benjamin Peterson · 13 years ago
  63. 0c0d756 don't let a tuple msg be interpreted as arguments to AssertionError (closes #13268) by Benjamin Peterson · 13 years ago
  64. 78fc705 add a test for an assertion with tuple msg by Benjamin Peterson · 13 years ago
  65. 87ba642 Issue #13237: Make the subprocess convenience helper documentation self-contained aside from the shared parameter description. Downgrade the pipe warnings at that level to notes (since those pipes are hidden, people are unlikely to even try it) by Nick Coghlan · 13 years ago
  66. 6d089df Issue #10860: Skip the new test if HTTPS is not available by Petri Lehtinen · 13 years ago
  67. 63c54e8 Issue #13237: fix typo by Nick Coghlan · 13 years ago
  68. 65ad31a Issue #13237: remove some details that only apply to the 3.x version of this module and cross reference the relocated warning about the dangers of invoking the shell with untrusted input by Nick Coghlan · 13 years ago
  69. 2ed203a Issue #13237: further updates to subprocess documentation by Nick Coghlan · 13 years ago
  70. 5087d80 Corrected typo in comment. by Vinay Sajip · 13 years ago
  71. 59b13f4 Refactor a bit the codecs doc. by Ezio Melotti · 13 years ago
  72. c515eba Updated NEWS with fix for 13232. by Vinay Sajip · 13 years ago
  73. 9a11b29 Closes #13232: Handle multiple encodings in exception logging. by Vinay Sajip · 13 years ago
  74. 99e93d2 merge heads by Petri Lehtinen · 13 years ago
  75. 8ffbab8 Issue #13018: Fix reference leaks in error paths in dictobject.c. by Petri Lehtinen · 13 years ago
  76. 46f990e Issue #10332: multiprocessing: fix a race condition when a Pool is closed by Charles-François Natali · 13 years ago
  77. 22dabb6 merge heads by Benjamin Peterson · 13 years ago
  78. 414ffa8 note callable is back in 3.2 by Benjamin Peterson · 13 years ago
  79. 8671157 Issue #13237: Rearrange subprocess module documentation to emphasise the convenience functions and commonly needed arguments by Nick Coghlan · 13 years ago
  80. df10d7c Issue #13141: Demonstrate recommended style for SocketServer examples. by Florent Xicluna · 13 years ago
  81. c8065e4 Whoops, PyException_GetTraceback() is not documented on 2.7 by Petri Lehtinen · 13 years ago
  82. 19465dd Add the green "New reference" note to the doc of PyException_GetTraceback() by Petri Lehtinen · 13 years ago
  83. b21f51a Note that the #1548891 fix indirectly fixes shlex (#6988, #1170) by Éric Araujo · 13 years ago
  84. 5a77fe9 Issue #1548891: The cStringIO.StringIO() constructor now encodes unicode by Antoine Pitrou · 13 years ago
  85. f678e82 Oops, forgot issue number by Antoine Pitrou · 13 years ago
  86. a5016cd Add test for fix of issue #1730114. by Antoine Pitrou · 13 years ago
  87. 47fb192 Issue #9168: now smtpd is able to bind privileged port. by Florent Xicluna · 13 years ago
  88. 5e30fa5 #13233: fix typo. by Ezio Melotti · 13 years ago
  89. 44b866a Merge heads. by Ezio Melotti · 13 years ago
  90. 797b95b News entry for Issue12529 and Issue12604 by Senthil Kumaran · 13 years ago
  91. a195873 #13219: clarify section about character sets in the re documentation. by Ezio Melotti · 13 years ago
  92. d583068 Fix Issue 12604 - Use a proper no-op macro expansion for VTRACE macro in _sre.c by Senthil Kumaran · 13 years ago
  93. ddd4031 Fix closes Issue6090 - Raise a ValueError, instead of failing with unrelated by Senthil Kumaran · 13 years ago
  94. 59a06d4 Fix closes Issue12529 - cgi.parse_header failure on double quotes and by Senthil Kumaran · 13 years ago
  95. 1e87da1 Remove duplication. by Ezio Melotti · 13 years ago
  96. 7a15390 Fixes #10860: Handle empty port after port delimiter in httplib by Łukasz Langa · 13 years ago
  97. 086f927 #12277: add missing comma. by Ezio Melotti · 13 years ago
  98. deb1ce7 Issue #13194: zlib.compressobj().copy() and zlib.decompressobj().copy() are now available on Windows. by Nadeem Vawda · 13 years ago
  99. 3dca9f5 normalize whitespace in Lib/distutils/msvc9compiler.py by Mark Hammond · 13 years ago
  100. 323b5da Issue #7833: Ext. modules built using distutils on Windows no longer get a manifest by Mark Hammond · 13 years ago