1. 28f35b2 Issue #23735: Avoid sighandler_t Gnu-ism by Martin Panter · 8 years ago
  2. 5dbbf1a Issue #23735: Add SIGWINCH handler for Readline 6.3+ support, by Eric Price by Martin Panter · 8 years ago
  3. acc0319 Issue #26586: Handle excessive header fields in http.server, by Xiang Zhang by Martin Panter · 8 years ago
  4. af83639 Issue #26679: Fix description of KEY_PPAGE and KEY_NPAGE constants by Berker Peksag · 8 years ago
  5. b31daff Issue #26688: Fix module name in mock docs by Berker Peksag · 8 years ago
  6. 16c7cfd Issue #26678: Fix indexing of datetime.tzinfo and timezone classes by Martin Panter · 8 years ago
  7. d93a601 Added a cookbook recipe for a logging context manager. by Vinay Sajip · 8 years ago
  8. c94a93a asyncio: Don't log ConnectionAbortedError by Victor Stinner · 8 years ago
  9. 2ba8ece asyncio: allow None as wait timeout by Victor Stinner · 8 years ago
  10. ccdbe80 asyncio: sync overlapped.c with GitHub by Victor Stinner · 8 years ago
  11. 3ee147f Issue #22854: Fix logic for skipping test by Martin Panter · 8 years ago
  12. e4ba872 Remove redundant leading zeroes in PEP references. by Serhiy Storchaka · 8 years ago
  13. 0950e6a Issue #22854: Skip pipe seek tests on Windows by Martin Panter · 8 years ago
  14. 754aab2 Issue #22854: Clarify documentation about UnsupportedOperation and add tests by Martin Panter · 8 years ago
  15. 8dc2ec1 Issue #26492: Added additional tests for exhausted iterators of mutable sequences. by Serhiy Storchaka · 8 years ago
  16. fbb1c5e Issue #26494: Fixed crash on iterating exhausting iterators. by Serhiy Storchaka · 8 years ago
  17. 13b3acd Fix typo in xml.dom.pulldom.rst by Berker Peksag · 8 years ago
  18. 53f8ba5 test_urllibnet: set timeout on test_fileno() by Victor Stinner · 8 years ago
  19. 9db2ae7 Fix ResourceWarning in test_unittest when interrupted by Victor Stinner · 8 years ago
  20. 06ddd35 Issue #25911: Backport os._DummyDirEntry fixes by Victor Stinner · 8 years ago
  21. 8ba2083 Issue #26643: Add missing shutil resources to regrtest.py by Victor Stinner · 8 years ago
  22. 6f57424 Document None as timeout for asyncio.timeout() by Andrew Svetlov · 8 years ago
  23. f9cddcc Issue #25314: store_true and store_false also create appropriate defaults. by Raymond Hettinger · 13 years ago
  24. f6b1d66 Issue #23804: Fix SSL recv/read(0) to not return 1024 bytes by Martin Panter · 8 years ago
  25. ce91387 Issue #25195: Fix a regression in mock.MagicMock by Berker Peksag · 8 years ago
  26. fa0f62d Issue #23758: Improve num_params docs of create_{function,aggregate} functions by Berker Peksag · 8 years ago
  27. f70fe6f Document sqlite3.Cursor.close() by Berker Peksag · 8 years ago
  28. 557a063 sqlite3 documentation: Connection.iterdump() is a method by Berker Peksag · 8 years ago
  29. 5503d47 Issue #26644: Raise ValueError for negative SSLSocket.recv() and read() by Martin Panter · 8 years ago
  30. 13f0c61 _pickle: Fix load_counted_tuple(), use Py_ssize_t for size by Victor Stinner · 8 years ago
  31. 1dcf4f9 Issue#26616:Fixed a bug in datetime.astimezone() method. by Alexander Belopolsky · 8 years ago
  32. 84ca9fe doctest: fix _module_relative_path() error message by Victor Stinner · 8 years ago
  33. 8a20851 Issue #25654: by Victor Stinner · 8 years ago
  34. 540a81c Issue #21925: Fix test_warnings for release mode by Victor Stinner · 8 years ago
  35. 244e120 Use Py_uintptr_t for atomic pointers by Victor Stinner · 9 years ago
  36. 4b8b86c pystate.h: fix _PyThreadState_UncheckedGet() by Victor Stinner · 8 years ago
  37. 2746168 warnings.formatwarning(): catch exceptions by Victor Stinner · 8 years ago
  38. e0511e7 Fix test_warnings.test_improper_option() by Victor Stinner · 8 years ago
  39. 1129084 Issue #26621: Remove unnecessary test. by Stefan Krah · 8 years ago
  40. 01a9a95 Issue #26525: Change chr example to match change in ord example. by Terry Jan Reedy · 8 years ago
  41. 3a56b77 Makefile.pre.in (profile-opt): Fix bashism. by doko@ubuntu.com · 8 years ago
  42. d5871e6 Enhance _tracemalloc debug mode by Victor Stinner · 8 years ago
  43. 2f49e09 Fix _tracemalloc start/stop by Victor Stinner · 8 years ago
  44. d6990d2 Issue #24266: Cancel history search mode with Ctrl+C in Readline 7 by Martin Panter · 8 years ago
  45. e46487b merge 3.4 (#17167) by Benjamin Peterson · 8 years ago
  46. b9869df remove useless $ keyword (closes #17167) by Benjamin Peterson · 8 years ago
  47. f6e9f47 Issue #15699: Reunite comment with variable by Martin Panter · 8 years ago
  48. 063d48d Issue #26525: Change ord example from nu to more easily recognized Euro sign. by Terry Jan Reedy · 8 years ago
  49. 4902c46 Issue #15660: Further clarify 0 prefix for width specifier in formats. by Terry Jan Reedy · 8 years ago
  50. e431d3c Issue #26581: Use the first coding cookie on a line, not the last one. by Serhiy Storchaka · 8 years ago
  51. 97eee1c Added new tests for detecting Python source code encoding. by Serhiy Storchaka · 8 years ago
  52. e2021f2 Issue #12813: uuid.uuid4() no longer depends on ctypes by Berker Peksag · 8 years ago
  53. d02eb8a Issue #19164: Improve exception message of uuid.UUID() by Berker Peksag · 8 years ago
  54. 563c949 Issue #26593: Fix typo in logging HOWTO by Berker Peksag · 8 years ago
  55. e3385b4 Issue #19265: Improve test coverage of datetime.tzinfo by Berker Peksag · 8 years ago
  56. 1cd4ff6 Issue #26560: Avoid potential ValueError in BaseHandler.start_response by Berker Peksag · 8 years ago
  57. adcb654 Suggest people use feature detection in porting guide by Brett Cannon · 8 years ago
  58. 62564db #26250: document the sqlite3.Cursor.connection attribute. Initial patches by Aviv Palivoda and Varpu Rantala. by Ezio Melotti · 8 years ago
  59. e4044bf Issue #26271: Fix the Freeze tool to use variables passed in from the by Brett Cannon · 8 years ago
  60. 7740062 Fixed a typo. by Serhiy Storchaka · 8 years ago
  61. 42f8548 Issue #26580: Remove outdated reference to ftpmirror by Berker Peksag · 8 years ago
  62. 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
  63. 1c80b15 Issue #26583: Skip test_timestamp_overflow in test_import if bytecode by Ned Deily · 8 years ago
  64. c488bc6 Merge 3.4 into 3.5 by Donald Stufft · 8 years ago
  65. 2bc69c4 Upgrade ensurepip._bundled pip to 8.1.1 and setuptools to 20.3 by Donald Stufft · 8 years ago
  66. 5c13aa1 Fix pyclbr to support importing packages by Victor Stinner · 8 years ago
  67. d887d1f Issue #17603: Check for st_blocks field without requiring fileblocks.o by Martin Panter · 8 years ago
  68. a2e5e04 Py_FatalError: disable faulthandler earlier by Victor Stinner · 8 years ago
  69. 6150f31 Fix usage of PyMem_Malloc() in overlapped.c by Victor Stinner · 8 years ago
  70. ce911c3 Issue #26499: Fixes to HTTPResponse.readline() and read1(), by Silent Ghost by Martin Panter · 8 years ago
  71. 9528334 _tracemalloc: store lineno as unsigned int by Victor Stinner · 8 years ago
  72. 57003f8 faulthandler: Test Py_FatalError() with GIL released by Victor Stinner · 8 years ago
  73. 4ddee7f Fix Py_FatalError() if called without the GIL by Victor Stinner · 8 years ago
  74. 62b6a0d Issue #26523: The multiprocessing thread pool (multiprocessing.dummy.Pool) was untested. by Antoine Pitrou · 8 years ago
  75. ecd5383 #25320: Handle sockets in directories unittest discovery is scanning. by Robert Collins · 8 years ago
  76. 87d6e13 Fix test_venv on FreeBSD buildbot by Victor Stinner · 8 years ago
  77. 21d0e1b Skip test_site if USER_SITE cannot be created by Victor Stinner · 8 years ago
  78. 8c0f0c5 Issue #20556: Used specific assert methods in threading tests. by Serhiy Storchaka · 8 years ago
  79. 20be53e Issue #16181: cookiejar.http2time() now returns None if year is higher than datetime.MAXYEAR by Berker Peksag · 8 years ago
  80. f2b9a39 #24918: fix CSS for code blocks when a side box is present. Patch by Manvi B. by Ezio Melotti · 8 years ago
  81. a503f70 Minor recipe edit: convert "while 1" to "while True". by Raymond Hettinger · 8 years ago
  82. 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
  83. 4d02896 Issue #26548: Minor fix to awkward wording in docs by Raymond Hettinger · 8 years ago
  84. d3722e7 Issue #26079: Fixing the build output folder for tix-8.4.3.6. Patch by Bjoern Thiel. by Steve Dower · 8 years ago
  85. d669b6b Issue #23606: Adds note to ctypes documentation regarding cdll.msvcrt. by Steve Dower · 8 years ago
  86. 126c9c1 Issue #26513: Fixes platform module detection of Windows Server by Steve Dower · 8 years ago
  87. 8a7240e Issue #23718: Fixed parsing time in week 0 before Jan 1. Original patch by by Serhiy Storchaka · 8 years ago
  88. d756963 Issue #20589: Fix test_pathlib by Victor Stinner · 8 years ago
  89. eb2e02b Issue #26542: Fix markup of code example in difflib documentation by Berker Peksag · 8 years ago
  90. 04d4229 Issue #20589: Invoking Path.owner() and Path.group() on Windows now raise by Berker Peksag · 8 years ago
  91. ca0250a Issue 25959: Explain in docstring that PhotoImage.zoom arguments are by Terry Jan Reedy · 8 years ago
  92. 29bf27f Issue #26516: Enhance Python mem allocators doc by Victor Stinner · 8 years ago
  93. 42a4366 Issue #26177: Fixed the keys() method for Canvas and Scrollbar widgets. by Serhiy Storchaka · 8 years ago
  94. 0554d83 Issue #15068: Avoid creating a reference loop in fileinput. by Serhiy Storchaka · 8 years ago
  95. 4a6f482 Backs out buildbot clean trigger. by Steve Dower · 8 years ago
  96. 79993a9 Adds warning to prepare_ssl when nasm is not available. by Steve Dower · 8 years ago
  97. ada6db7 Issue #25911: Tring to silence deprecation warnings in bytes path walk tests. by Serhiy Storchaka · 8 years ago
  98. 7ab61ae Backed out changeset f9e22717722d by Serhiy Storchaka · 8 years ago
  99. adca846 Backed out changeset 19a3e0e664af by Serhiy Storchaka · 8 years ago
  100. 947f411 Issue #26465: Update Windows builds to use OpenSSL 1.0.2g. by Steve Dower · 8 years ago