1. da3bb38 Issue #26585: Eliminate _quote_html() and use html.escape(quote=False) by Martin Panter · 8 years ago
  2. 50ab1a3 Issue #26685: Raise OSError if closing a socket fails by Martin Panter · 8 years ago
  3. 4030027 Issue #25339: PYTHONIOENCODING now has priority over locale in setting the by Serhiy Storchaka · 8 years ago
  4. fc43511 Issue #25339: PYTHONIOENCODING now has priority over locale in setting the by Serhiy Storchaka · 8 years ago
  5. 734423b Issue #16329: Add .webm to mimetypes.types_map by Berker Peksag · 8 years ago
  6. d7fdc86 Issue #16329: Add .webm to mimetypes.types_map by Berker Peksag · 8 years ago
  7. ba22cf8 Issue #13952: Add .csv to mimetypes.types_map by Berker Peksag · 8 years ago
  8. a2d7cf0 Issue #13952: Add .csv to mimetypes.types_map by Berker Peksag · 8 years ago
  9. 5f0507d Issue #26587: Allow .pth files to specify file paths as well as directories. by Brett Cannon · 8 years ago
  10. 9e080e0 Issue #25609: Introduce contextlib.AbstractContextManager and by Brett Cannon · 8 years ago
  11. c5b5ba9 Issue #26709: Fixed Y2038 problem in loading binary PLists. by Serhiy Storchaka · 8 years ago
  12. 94ad49f Issue #26709: Fixed Y2038 problem in loading binary PLists. by Serhiy Storchaka · 8 years ago
  13. b15c304 Issue #6953: Merge readline doc from 3.5 by Martin Panter · 8 years ago
  14. 0f76739 Issue #6953: Rearrange and expand Readline module documentation by Martin Panter · 8 years ago
  15. c86c91a Merge typo fixes from 3.5 by Martin Panter · 8 years ago
  16. cc71a79 Fix typos in documentation and comments by Martin Panter · 8 years ago
  17. a350600 Issue #23735: Merge Readline resize handling from 3.5 by Martin Panter · 8 years ago
  18. 5dbbf1a Issue #23735: Add SIGWINCH handler for Readline 6.3+ support, by Eric Price by Martin Panter · 8 years ago
  19. 519f912 Issue #25951: Fix SSLSocket.sendall() to return None, by Aviv Palivoda by Martin Panter · 8 years ago
  20. b93e4b2 Issue #26586: Merge excessive HTTP header handling from 3.5 by Martin Panter · 8 years ago
  21. acc0319 Issue #26586: Handle excessive header fields in http.server, by Xiang Zhang by Martin Panter · 8 years ago
  22. dcfebb3 Issue #26676: Add missing XMLPullParser to ElementTree.__all__ by Martin Panter · 8 years ago
  23. 047f3b7 Issue #22854: Merge UnsupportedOperation fixes from 3.5 by Martin Panter · 8 years ago
  24. 754aab2 Issue #22854: Clarify documentation about UnsupportedOperation and add tests by Martin Panter · 8 years ago
  25. ab0d198 Issue #26492: Exhausted iterator of array.array now conforms with the behavior by Serhiy Storchaka · 8 years ago
  26. ab479c4 Issue #26494: Fixed crash on iterating exhausting iterators. by Serhiy Storchaka · 8 years ago
  27. fbb1c5e Issue #26494: Fixed crash on iterating exhausting iterators. by Serhiy Storchaka · 8 years ago
  28. 9759dd3 Issue #26295: When using "python3 -m test --testdir=TESTDIR", regrtest doesn't by Victor Stinner · 8 years ago
  29. b1511f7 doctest now supports packages by Victor Stinner · 8 years ago
  30. ef4bb1e Issue #23804: Merge SSL zero read fix from 3.5 by Martin Panter · 8 years ago
  31. f6b1d66 Issue #23804: Fix SSL recv/read(0) to not return 1024 bytes by Martin Panter · 8 years ago
  32. 5a6c018 Issue #25195: Fix a regression in mock.MagicMock by Berker Peksag · 8 years ago
  33. ce91387 Issue #25195: Fix a regression in mock.MagicMock by Berker Peksag · 8 years ago
  34. afd465d Issue #26644: Merge SSL negative read fix from 3.5 by Martin Panter · 8 years ago
  35. 5503d47 Issue #26644: Raise ValueError for negative SSLSocket.recv() and read() by Martin Panter · 8 years ago
  36. 3840b2a Issue #25940: Use internal local server more in test_ssl by Martin Panter · 8 years ago
  37. 16b698b merge by Alexander Belopolsky · 8 years ago
  38. 1dcf4f9 Issue#26616:Fixed a bug in datetime.astimezone() method. by Alexander Belopolsky · 8 years ago
  39. 4a2e663 Fix a few typos by Zachary Ware · 8 years ago
  40. 4f17426 Fix bug in __import__ during Python shutdown by Victor Stinner · 8 years ago
  41. e091d32 Merge 3.5 by Victor Stinner · 8 years ago
  42. 2746168 warnings.formatwarning(): catch exceptions by Victor Stinner · 8 years ago
  43. 404cdc5 faulthandler: add Windows exception handler by Victor Stinner · 8 years ago
  44. 10b73e1 Add C functions _PyTraceMalloc_Track() by Victor Stinner · 8 years ago
  45. e492ae5 tracemalloc now supports domains by Victor Stinner · 8 years ago
  46. 0b2d71b Issue #24266: Merge readline Ctrl+C handling from 3.5 by Martin Panter · 8 years ago
  47. d6990d2 Issue #24266: Cancel history search mode with Ctrl+C in Readline 7 by Martin Panter · 8 years ago
  48. 2efdc8c merge 3.5 (#17167) by Benjamin Peterson · 8 years ago
  49. e46487b merge 3.4 (#17167) by Benjamin Peterson · 8 years ago
  50. b9869df remove useless $ keyword (closes #17167) by Benjamin Peterson · 8 years ago
  51. e431d3c Issue #26581: Use the first coding cookie on a line, not the last one. by Serhiy Storchaka · 8 years ago
  52. 19a8e84 Add socket finalizer by Victor Stinner · 8 years ago
  53. fac3956 Optimize bytes.replace(b'', b'.') by Victor Stinner · 8 years ago
  54. 1cd4ff6 Issue #26560: Avoid potential ValueError in BaseHandler.start_response by Berker Peksag · 8 years ago
  55. a051bf3 Issue #26581: Use the first coding cookie on a line, not the last one. by Serhiy Storchaka · 8 years ago
  56. 3c3d7f4 Issue #18787: spwd.getspnam() now raises a PermissionError if the user by Berker Peksag · 8 years ago
  57. cf934a1 Issue #26560: Avoid potential ValueError in BaseHandler.start_response by Berker Peksag · 8 years ago
  58. 914cde8 On ResourceWarning, log traceback where the object was allocated by Victor Stinner · 8 years ago
  59. 6840632 #26250: merge with 3.5. by Ezio Melotti · 8 years ago
  60. 62564db #26250: document the sqlite3.Cursor.connection attribute. Initial patches by Aviv Palivoda and Varpu Rantala. by Ezio Melotti · 8 years ago
  61. 32cba67 Merge for issue #26271 by Brett Cannon · 8 years ago
  62. e4044bf Issue #26271: Fix the Freeze tool to use variables passed in from the by Brett Cannon · 8 years ago
  63. 3ca3342 Issue #26313: ssl.py _load_windows_store_certs fails if windows cert store is empty. Patch by Baji. by Steve Dower · 8 years ago
  64. 8dd7aeb Issue #26313: ssl.py _load_windows_store_certs fails if windows cert store is empty. Patch by Baji. by Steve Dower · 8 years ago
  65. c918800 Issue #26583: merge from 3.5 by Ned Deily · 8 years ago
  66. 1c80b15 Issue #26583: Skip test_timestamp_overflow in test_import if bytecode by Ned Deily · 8 years ago
  67. ec748c47 Merge 3.5 by Victor Stinner · 8 years ago
  68. 499d365 Issue #17603: Merge configure.ac fix from 3.5 by Martin Panter · 8 years ago
  69. d887d1f Issue #17603: Check for st_blocks field without requiring fileblocks.o by Martin Panter · 8 years ago
  70. 5c13aa1 Fix pyclbr to support importing packages by Victor Stinner · 8 years ago
  71. ce911c3 Issue #26499: Fixes to HTTPResponse.readline() and read1(), by Silent Ghost by Martin Panter · 8 years ago
  72. ad52437 Fail if PyMem_Malloc() is called without holding the GIL by Victor Stinner · 8 years ago
  73. 32f2eb4 Issue #21042: Revert Linux find_library() to return just filename by Martin Panter · 8 years ago
  74. ec195fb Issue #26499: Merge HTTPResponse fix from 3.5 by Martin Panter · 8 years ago
  75. 0611c26 On memory error, dump the memory block traceback by Victor Stinner · 8 years ago
  76. 58f2bd8 Issue #26523: The multiprocessing thread pool (multiprocessing.dummy.Pool) was untested. by Antoine Pitrou · 8 years ago
  77. 62b6a0d Issue #26523: The multiprocessing thread pool (multiprocessing.dummy.Pool) was untested. by Antoine Pitrou · 8 years ago
  78. bfef0be #25320: Handle sockets in directories unittest discovery is scanning. by Robert Collins · 8 years ago
  79. ecd5383 #25320: Handle sockets in directories unittest discovery is scanning. by Robert Collins · 8 years ago
  80. c4aec36 Check the GIL in PyObject_Malloc() by Victor Stinner · 8 years ago
  81. 34be807 Add PYTHONMALLOC env var by Victor Stinner · 8 years ago
  82. 0647ef0 Issue #16181: cookiejar.http2time() now returns None if year is higher than datetime.MAXYEAR by Berker Peksag · 8 years ago
  83. 20be53e Issue #16181: cookiejar.http2time() now returns None if year is higher than datetime.MAXYEAR by Berker Peksag · 8 years ago
  84. 4c9375b #24918: merge with 3.5. by Ezio Melotti · 8 years ago
  85. f2b9a39 #24918: fix CSS for code blocks when a side box is present. Patch by Manvi B. by Ezio Melotti · 8 years ago
  86. 0ce835f #25687: merge with 3.5. by Ezio Melotti · 8 years ago
  87. 8dea74f #25687: clarify that errors in tearDown increase the total number of reported errors. Initial patch by HyeSoo Park. by Ezio Melotti · 8 years ago
  88. 8d9bcb5 Issue #26079: Fixing the build output folder for tix-8.4.3.6. Patch by Bjoern Thiel. by Steve Dower · 8 years ago
  89. d3722e7 Issue #26079: Fixing the build output folder for tix-8.4.3.6. Patch by Bjoern Thiel. by Steve Dower · 8 years ago
  90. 6d6b986 Issue #23606: Adds note to ctypes documentation regarding cdll.msvcrt. by Steve Dower · 8 years ago
  91. d669b6b Issue #23606: Adds note to ctypes documentation regarding cdll.msvcrt. by Steve Dower · 8 years ago
  92. 11b3918 Issue #26513: Fixes platform module detection of Windows Server by Steve Dower · 8 years ago
  93. 126c9c1 Issue #26513: Fixes platform module detection of Windows Server by Steve Dower · 8 years ago
  94. 6e4150f Issue #23718: Fixed parsing time in week 0 before Jan 1. Original patch by by Serhiy Storchaka · 8 years ago
  95. 8a7240e Issue #23718: Fixed parsing time in week 0 before Jan 1. Original patch by by Serhiy Storchaka · 8 years ago
  96. 2c2a4e6 Add Mock.assert_called() by Victor Stinner · 8 years ago
  97. d0e9b69 Issue #20589: Invoking Path.owner() and Path.group() on Windows now raise by Berker Peksag · 8 years ago
  98. 04d4229 Issue #20589: Invoking Path.owner() and Path.group() on Windows now raise by Berker Peksag · 8 years ago
  99. 2d68f18 Issue #26177: Fixed the keys() method for Canvas and Scrollbar widgets. by Serhiy Storchaka · 8 years ago
  100. b9f3114 Issue #21042: Return full path in ctypes.util.find_library() on Linux by Martin Panter · 8 years ago