1. cf85c30 test_asyncore: Actually try to received OOB data. by Charles-François Natali · 13 years ago
  2. b2cca00 Issue #13308: Fix test_httpservers failures when run as root. by Charles-François Natali · 13 years ago
  3. f7ed9fc Issue #13308: Fix test_httpservers failures when run as root. by Charles-François Natali · 13 years ago
  4. 23e1ecb Issue #13324: fcntlmodule: Add the F_NOCACHE flag. Patch by Alex Stewart. by Charles-François Natali · 13 years ago
  5. ca897e9 #13295: http.server now produces valid HTML 4.01 strict. by Ezio Melotti · 13 years ago
  6. 23e275b Port UCS1 and charmap codecs to new API. by Martin v. Löwis · 13 years ago
  7. 9e81668 Introduce PyObject* API for raising encode errors. by Martin v. Löwis · 13 years ago
  8. 2fbc185 Issue #13312: skip the failing negative years for now. by Florent Xicluna · 13 years ago
  9. dfee6c8 Actually, there's more than one failing value. (changeset 9cb1b85237a9, issue #13312). by Florent Xicluna · 13 years ago
  10. e2a732e Issue #13312: skip the single failing value for now. by Florent Xicluna · 13 years ago
  11. 91d5193 Closes #2892: preserve iterparse events in case of SyntaxError. by Florent Xicluna · 13 years ago
  12. 5f4f4c5 Replace Py_UNICODE_strchr with PyUnicode_FindChar. by Martin v. Löwis · 13 years ago
  13. d1bd7f7 Additional tests for negative years. by Florent Xicluna · 13 years ago
  14. f24e7e6 Merge 3.2: issue #2892 by Florent Xicluna · 13 years ago
  15. f588dd6 Merge test improvements from 3.2. by Ezio Melotti · 13 years ago
  16. c1e73c3 Make sure that the tolerant parser still parses valid HTML correctly. by Ezio Melotti · 13 years ago
  17. 725af4d Lowercase the test name, to run last. by Florent Xicluna · 13 years ago
  18. 050c7e6 Replace temporary tests with the real test case for issue #13309 on Gentoo. by Florent Xicluna · 13 years ago
  19. 4c875a9 'HTTPSHandler' and not the type. by Senthil Kumaran · 13 years ago
  20. 0d54eb9 Append HTTPSHandler to __all__ when it is available. by Senthil Kumaran · 13 years ago
  21. 6c5bd40 issue13287 - Define __all__ for urllib.request and urllib.error and expose only by Senthil Kumaran · 13 years ago
  22. 712b14f Troubleshoot issue #13309 on Gentoo buildbot. by Florent Xicluna · 13 years ago
  23. 752c1d4c Add temporary tests to troubleshoot issue #13309 on Gentoo buildbot. by Florent Xicluna · 13 years ago
  24. bceb528 Test the year range supported by time.strftime() and time.asctime(). by Florent Xicluna · 13 years ago
  25. 629a2c3 Merge test fixes from 3.2. by Ezio Melotti · 13 years ago
  26. b9a48f7 Avoid reusing the same collector in the tests. by Ezio Melotti · 13 years ago
  27. 829c3da #12008: merge with 3.2. by Ezio Melotti · 13 years ago
  28. 18b0e5b #12008: add a test. by Ezio Melotti · 13 years ago
  29. 7de56f6 #670664: Fix HTMLParser to correctly handle the content of ``<script>...</script>`` and ``<style>...</style>``. by Ezio Melotti · 13 years ago
  30. 4bfe03a correct signature for tzinfo.dst() in examples; thanks to Daniil Shved from docs@ by Sandro Tosi · 13 years ago
  31. 316f573 Issue #13304: Skip test case if user site-packages disabled (-s or by Ned Deily · 13 years ago
  32. ce26014 Fix issue 10817 - Fix urlretrieve function to raise ContentTooShortError by Senthil Kumaran · 13 years ago
  33. 53bcd66 use diveintopython.net now that DIP.org returns 410; thanks to Josh Gachnang from docs@ by Sandro Tosi · 13 years ago
  34. 69e59a1 remove confusing paragraph (as part of r87523); thanks to AJ Hill from docs@ by Sandro Tosi · 13 years ago
  35. 5032292 Closes #13283: removal of two unused variable in locale.py by Jesus Cea · 13 years ago
  36. e348455 document turtle done() function; thanks to Csaba Szepesvari from docs@ by Sandro Tosi · 13 years ago
  37. 7aff451 Issue 13296: Fix IDLE to clear compile __future__ flags on shell restart. by Ned Deily · 13 years ago
  38. 567493f caught is the right pp of catch; thanks to Don Bennett from docs@ by Sandro Tosi · 13 years ago
  39. 6f45d18 Improve itertools docs with clearer examples of pure python equivalent code. by Raymond Hettinger · 13 years ago
  40. e584457 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
  41. 9783b44 Merge heads by Florent Xicluna · 13 years ago
  42. 93dfee1 Issue #13293: Better error message when trying to marshal bytes using xmlrpc.client. by Florent Xicluna · 13 years ago
  43. c4fec93 Cleanup xmlrpc: remove obsolete comments, unused imports. Add test for bytes marshalling. by Florent Xicluna · 13 years ago
  44. 3fa29f7 Closes #13291: NameError in xmlrpc package. by Florent Xicluna · 13 years ago
  45. cd06a14 Add Misc/NEWS entry for issue #10519 by Petri Lehtinen · 13 years ago
  46. 2b50a01 remove unused variable by Benjamin Peterson · 13 years ago
  47. 8db076c Issue #10363: Deallocate global locks in Py_Finalize(). by Antoine Pitrou · 13 years ago
  48. e0aa803 Fix the return value of set_discard (issue #10519) by Petri Lehtinen · 13 years ago
  49. 5acc27e Avoid unnecessary recursive function calls (closes #10519) by Petri Lehtinen · 13 years ago
  50. f54f6f5 Add a button to the code examples in the doc to show/hide the prompts and output. by Ezio Melotti · 13 years ago
  51. f78869e #13289: fix typo. by Ezio Melotti · 13 years ago
  52. b3b8ba6 bring is_integer into tested existence by Benjamin Peterson · 13 years ago
  53. 5a8f03f - Issue #13218: Fix test_ssl failures on Debian/Ubuntu. by Barry Warsaw · 13 years ago
  54. 46ae0ef - Issue #13218: Fix test_ssl failures on Debian/Ubuntu. by Barry Warsaw · 13 years ago
  55. 305bb66 Documentation typo by Florent Xicluna · 13 years ago
  56. 83386da I should be someone by Florent Xicluna · 13 years ago
  57. 4d46c2a Remove unused variable. by Florent Xicluna · 13 years ago
  58. 5d1155c Closes #13258: Use callable() built-in in the standard library. by Florent Xicluna · 13 years ago
  59. f99e4b5 Improve HTMLParser example in the doc and fix a couple minor things. by Ezio Melotti · 13 years ago
  60. f50ffa9 #13273: fix a bug that prevented HTMLParser to properly detect some tags when strict=False. by Ezio Melotti · 13 years ago
  61. 0b85cd0 Merge heads. by Ezio Melotti · 13 years ago
  62. d3cf0db #13278: fix typo. by Ezio Melotti · 13 years ago
  63. 74e6495 Fixes #13270: obsolete reference to old-style/new-style classes. by Florent Xicluna · 13 years ago
  64. 6187664 Added lost documentation cross-reference. by Vinay Sajip · 13 years ago
  65. e119c40 Issue #10860: Skip the new test if HTTPS is not available by Petri Lehtinen · 13 years ago
  66. fbb3981 Refactor a bit the codecs doc. by Ezio Melotti · 13 years ago
  67. 963004d Fix typo. by Ezio Melotti · 13 years ago
  68. 9a1b956 merge heads by Benjamin Peterson · 13 years ago
  69. 1fafc1a document __bytes__ special method (closes #13259) by Benjamin Peterson · 13 years ago
  70. 64c1c07 merge heads by Petri Lehtinen · 13 years ago
  71. a94200e Issue #13018: Fix reference leaks in error paths in dictobject.c. by Petri Lehtinen · 13 years ago
  72. f8859e1 Issue #10332: multiprocessing: fix a race condition when a Pool is closed by Charles-François Natali · 13 years ago
  73. d6ca6c2 note callable is back in 3.2 by Benjamin Peterson · 13 years ago
  74. c45fb25 Issue #13255: wrong docstrings in array module. by Florent Xicluna · 13 years ago
  75. 023611f Issue 13141: Demonstrate recommended style for socketserver examples. by Florent Xicluna · 13 years ago
  76. ce77037 Add the green "New reference" note to the doc of PyException_GetTraceback() by Petri Lehtinen · 13 years ago
  77. de31b19 Issue 1294232: Fix errors in metaclass calculation affecting some cases of metaclass inheritance. Patch by Daniel Urban. by Nick Coghlan · 13 years ago
  78. 711f87c Issue #9168: now smtpd is able to bind privileged port. by Florent Xicluna · 13 years ago
  79. cd1d3ef #13233: fix typo. by Ezio Melotti · 13 years ago
  80. 81231d9 #13219: clarify section about character sets in the re documentation. by Ezio Melotti · 13 years ago
  81. fdd4575 News entry for Issue12529 and Issue12604 by Senthil Kumaran · 13 years ago
  82. af37b89 Issue 12668: Fix wording in Whatsnew3.2 by Raymond Hettinger · 13 years ago
  83. 5768e0c Issue 11931: Minor punctuation/grammar/wording fixups to the regex docs by Raymond Hettinger · 13 years ago
  84. 9d9141f adjust braces a bit by Benjamin Peterson · 13 years ago
  85. 34d38dc urllib.request - syntax changes enhancing readability. By Éric Araujo by Senthil Kumaran · 13 years ago
  86. 202a3c4 3.2 - Fix Issue 12604 - Use a proper no-op macro expansion for VTRACE macro in _sre.c by Senthil Kumaran · 13 years ago
  87. 29fa9d4 3.2 - Fix closes Issue6090 - Raise a ValueError, instead of failing with unrelated by Senthil Kumaran · 13 years ago
  88. 1ef0c03 3.2 - Fix closes Issue12529 - cgi.parse_header failure on double quotes and by Senthil Kumaran · 13 years ago
  89. e130a52 Remove duplication. by Ezio Melotti · 13 years ago
  90. a5a9a9c Fixes #10860: Handle empty port after port delimiter in httplib by Łukasz Langa · 13 years ago
  91. 551ba20 Issue #13188: When called without an explicit traceback argument, by Antoine Pitrou · 13 years ago
  92. 6bfecd1 #12448: smtplib now flushes stdout while running ``python -m smtplib`` by Ezio Melotti · 13 years ago
  93. 67494f2 #12277: add missing comma. by Ezio Melotti · 13 years ago
  94. bcb86c5 Issue #13194: zlib.compressobj().copy() and zlib.decompressobj().copy() are now available on Windows. by Nadeem Vawda · 13 years ago
  95. 2963fe0 plug possible refleak (closes #13199) by Benjamin Peterson · 13 years ago
  96. 53e4a9a normalize whitespace in Lib/distutils/msvc9compiler.py by Mark Hammond · 13 years ago
  97. 6c58b28 Issue #7833: Ext. modules built using distutils on Windows no longer get a manifest by Mark Hammond · 13 years ago
  98. 8d91d45 Issue #10653: Fix time.strftime() on Windows, check for invalid format strings by Victor Stinner · 13 years ago
  99. 4b779b3 Issue 13177: Make tracebacks more readable by avoiding chained exceptions in the lru_cache. by Raymond Hettinger · 13 years ago
  100. 9be5723 Update dead references from py.org/dev/faq to the devguide (#13176) by Éric Araujo · 13 years ago