1. b65e579 Improve variable names by Raymond Hettinger · 12 years ago
  2. ec4b174 Issue #17385: Fix quadratic behavior in threading.Condition by Raymond Hettinger · 12 years ago
  3. 720da57 Update code to increment and decrement using the cleaner += 1 and -= 1 style. by Raymond Hettinger · 12 years ago
  4. 081a55b #11963: merge with 3.3. by Ezio Melotti · 12 years ago
  5. a51be4c #11963: merge with 3.2. by Ezio Melotti · 12 years ago
  6. e7c3299 #11963: fix Windows buildbots. by Ezio Melotti · 12 years ago
  7. 4923903 #11963: merge with 3.3. by Ezio Melotti · 12 years ago
  8. 0d7333e #11963: merge with 3.2. by Ezio Melotti · 12 years ago
  9. 3919184 #11963: avoid printing messages in test_parser. Initial patch by Éric Araujo. by Ezio Melotti · 12 years ago
  10. 84fae78 Issue #16954: Add docstrings for ElementTree by Eli Bendersky · 12 years ago
  11. 36fe228 merge by Raymond Hettinger · 12 years ago
  12. d8d6010 Sync-up with 3.4 to make maintenance easier. by Raymond Hettinger · 12 years ago
  13. a28c55a merge by Raymond Hettinger · 12 years ago
  14. f96b2b0 Improve comments and variable names. by Raymond Hettinger · 12 years ago
  15. becf5c6 Issue #17384: Consolidated cleanup operations in tests. by Vinay Sajip · 12 years ago
  16. 763edc1 (Merge 3.3) Issue #17223: the test is specific to 32-bit wchar_t type by Victor Stinner · 12 years ago
  17. 29c0034 Issue #17223: the test is specific to 32-bit wchar_t type by Victor Stinner · 12 years ago
  18. 857b24b Merge: PEP8 fixup on previous patch, remove unused imports in test_email. by R David Murray · 12 years ago
  19. 965794e Merge: PEP8 fixup on previous patch, remove unused imports in test_email. by R David Murray · 12 years ago
  20. b9534f4 PEP8 fixup on previous patch, remove unused import in test_email. by R David Murray · 12 years ago
  21. 2e78cd9 Merge: #14645: Generator now emits correct linesep for all parts. by R David Murray · 12 years ago
  22. addb0be Merge: #14645: Generator now emits correct linesep for all parts. by R David Murray · 12 years ago
  23. e67c6c5 #14645: Generator now emits correct linesep for all parts. by R David Murray · 12 years ago
  24. 1f38621 #11732: add a new suppress_crash_popup() context manager to test.support that disables crash popups on Windows and use it in test_ctypes. by Ezio Melotti · 12 years ago
  25. 1181a46 #11732: merge with 3.3. by Ezio Melotti · 12 years ago
  26. e846342 #11732: make suppress_crash_popup() work on Windows XP and Windows Server 2003. by Ezio Melotti · 12 years ago
  27. 3ff5e75 Refactor ftplib by getting rid of 4 methods (retr*() and stor*()) which were duplicated in TLS_FTP class. by Giampaolo Rodola' · 12 years ago
  28. 94c56a1 PEP8-ify ftplib.py: get rid of multiple statements on one line (if cond: ...) by Giampaolo Rodola' · 12 years ago
  29. 87a249c #11732: merge with 3.3. by Ezio Melotti · 12 years ago
  30. e1857d9 Fix indentation. by Ezio Melotti · 12 years ago
  31. 25a4045 #11732: add a new suppress_crash_popup() context manager to test.support. by Ezio Melotti · 12 years ago
  32. df1d3c5 Reverting the changeset b87792757ee8 made for Issue #12921 by Senthil Kumaran · 12 years ago
  33. 884f058 Reverting the changeset 5d76a4746d9d made for Issue #12921 by Senthil Kumaran · 12 years ago
  34. 1e7551d Reverting the changeset 5126e62c60af made for Issue #12921 by Senthil Kumaran · 12 years ago
  35. 24431f1 Fix Issue #12921: BaseHTTPServer's send_error should send the correct error by Senthil Kumaran · 12 years ago
  36. c37f835 Fix Issue #12921: BaseHTTPServer's send_error should send the correct error by Senthil Kumaran · 12 years ago
  37. 3fb066d Fix Issue #12921: BaseHTTPServer's send_error should send the correct error by Senthil Kumaran · 12 years ago
  38. f7f8972 merge by Raymond Hettinger · 12 years ago
  39. 2e8d9a7 Fix typo by Raymond Hettinger · 12 years ago
  40. f6b2667 Issue #16098: Update heapq.nsmallest to use the same algorithm as nlargest. by Raymond Hettinger · 12 years ago
  41. 975a8e8 Use LT in all comparisons by Raymond Hettinger · 12 years ago
  42. 221760a Issue #17278: Fix a crash in heapq.heappush() and heapq.heappop() when the list is being resized concurrently. by Antoine Pitrou · 12 years ago
  43. 31584e3 Issue #17278: Fix a crash in heapq.heappush() and heapq.heappop() when the list is being resized concurrently. by Antoine Pitrou · 12 years ago
  44. 44d5214 Issue #17278: Fix a crash in heapq.heappush() and heapq.heappop() when the list is being resized concurrently. by Antoine Pitrou · 12 years ago
  45. 63f40d7 #17346: merge with 3.3. by Ezio Melotti · 12 years ago
  46. 2960693 #17346: merge with 3.2. by Ezio Melotti · 12 years ago
  47. aaef344 #17346: make sure pickle tests are run against all protocols. Initial patch by Marius Gedminas. by Ezio Melotti · 12 years ago
  48. bb5f480 Merge by Raymond Hettinger · 12 years ago
  49. 352cc8c Another nit. by Raymond Hettinger · 12 years ago
  50. 32e2ff5 merge by Raymond Hettinger · 12 years ago
  51. f2c17a9 Fix other re-entrancy nits for the lru_cache. by Raymond Hettinger · 12 years ago
  52. 6c2078d merge by Raymond Hettinger · 12 years ago
  53. 0392342 Add test for RLock in the lru_cache(). by Raymond Hettinger · 12 years ago
  54. b6c65b2 Issue #16098: Update heapq.nsmallest to use the same algorithm as nlargest. by Raymond Hettinger · 12 years ago
  55. 6386e17 Issue #13898: test_ssl no longer prints a spurious stack trace on Ubuntu. by Nadeem Vawda · 12 years ago
  56. ad246bf Issue #13898: test_ssl no longer prints a spurious stack trace on Ubuntu. by Nadeem Vawda · 12 years ago
  57. 7b39b9b Issue #13898: test_ssl no longer prints a spurious stack trace on Ubuntu. by Nadeem Vawda · 12 years ago
  58. 04a2955 #17032: The "global" in the "NameError: global name 'x' is not defined" error message has been removed. Patch by Ram Rachum. by Ezio Melotti · 12 years ago
  59. ee71f4a #17334: merge with 3.3. by Ezio Melotti · 12 years ago
  60. bce9a5d #17334: test_index now works with unittest test discovery. Patch by Zachary Ware. by Ezio Melotti · 12 years ago
  61. 5c67e22 #17333: merge with 3.3. by Ezio Melotti · 12 years ago
  62. 02bf701 #17333: test_imaplib now works with unittest test discovery. Patch by Zachary Ware. by Ezio Melotti · 12 years ago
  63. a35e281 Merge by Raymond Hettinger · 12 years ago
  64. 4f4ba16 Issue #17331: Use isidentifier() instead of isalnum() to check for valid identifiers. by Raymond Hettinger · 12 years ago
  65. 794568f Merge by Raymond Hettinger · 12 years ago
  66. 409f663 Remove dependency on dummy_threading (to solve a bootstrap problem). by Raymond Hettinger · 12 years ago
  67. 4b843a7 #17312: unlink a file that test_aifc was leaving around. by Ezio Melotti · 12 years ago
  68. dc99e0d #17315: merge with 3.3. by Ezio Melotti · 12 years ago
  69. 7b3e571 #17315: merge with 3.2. by Ezio Melotti · 12 years ago
  70. 136726c #17315: unlink a file that test_posixpath was leaving around. by Ezio Melotti · 12 years ago
  71. fbd2686 #16935: update test_crypt now that unittest discover understands SkipTest. by Ezio Melotti · 12 years ago
  72. eae2b38 #16935: unittest now counts the module as skipped if it raises SkipTest, instead of counting it as an error. Patch by Zachary Ware. by Ezio Melotti · 12 years ago
  73. dacb685 Merge by Raymond Hettinger · 12 years ago
  74. fd54117 Don't deadlock on a reentrant call. by Raymond Hettinger · 12 years ago
  75. c0b6466 #17082: merge with 3.3. by Ezio Melotti · 12 years ago
  76. f79493b #17082: test_dbm* now work with unittest test discovery. Patch by Zachary Ware. by Ezio Melotti · 12 years ago
  77. 6cc46d3 #17079: merge with 3.3. by Ezio Melotti · 12 years ago
  78. 520378f #17079: test_ctypes now works with unittest test discovery. Patch by Zachary Ware. by Ezio Melotti · 12 years ago
  79. f9e9754 Closes #17313: Deleted test file created by test_logging. by Vinay Sajip · 12 years ago
  80. 517e925 Issue #17283: Share code between __main__.py and regrtest.py in Lib/test. by Chris Jerdonek · 12 years ago
  81. 1cb0cb2 #17296: backport fix for issue 1692335, naive exception pickling. by R David Murray · 12 years ago
  82. e1569e5 #17304: merge with 3.3. by Ezio Melotti · 12 years ago
  83. e601fb0 #17304: test_hash now works with unittest test discovery. Patch by Zachary Ware. by Ezio Melotti · 12 years ago
  84. 2805025 #17303: merge with 3.3. by Ezio Melotti · 12 years ago
  85. 1ed6be3 #17303: test_future* now work with unittest test discovery. Patch by Zachary Ware. by Ezio Melotti · 12 years ago
  86. 742c596 (Merge 3.3) Issue #17223: Fix test_array on Windows (16-bit wchar_t/Py_UNICODE) by Victor Stinner · 12 years ago
  87. c472c5d Issue #17223: Fix test_array on Windows (16-bit wchar_t/Py_UNICODE) by Victor Stinner · 12 years ago
  88. e55aa69 Issue #14720: Enhance sqlite3 microsecond conversion, document its behavior by Petri Lehtinen · 12 years ago
  89. 6401ad6 Issue #14720: Enhance sqlite3 microsecond conversion, document its behavior by Petri Lehtinen · 12 years ago
  90. 5f79409 Issue #14720: Enhance sqlite3 microsecond conversion, document its behavior by Petri Lehtinen · 12 years ago
  91. b26545e Some cosmetic changes by Eli Bendersky · 12 years ago
  92. 2368704 Some cosmetic changes by Eli Bendersky · 12 years ago
  93. 0320025 Merge by Richard Oudkerk · 12 years ago
  94. 5b8a324 Merge by Richard Oudkerk · 12 years ago
  95. 7aaa1ef Issue #17018: Make Process.join() retry if os.waitpid() fails with EINTR. by Richard Oudkerk · 12 years ago
  96. 25c3053 (Merge 3.3) Issue #17223: array module: Fix a crasher when converting an array by Victor Stinner · 12 years ago
  97. 29ec595 Issue #17223: array module: Fix a crasher when converting an array containing by Victor Stinner · 12 years ago
  98. c190389 Issue #17220: two fixes for changeset 2528e4aea338. by Brett Cannon · 12 years ago
  99. 91d0ca7 Issue #15083: Convert ElementTree doctests to unittests. by Serhiy Storchaka · 12 years ago
  100. f8cf59e Issue #15083: Convert ElementTree doctests to unittests. by Serhiy Storchaka · 12 years ago