1. 5d2a27d signal: add strsignal() (#6017) by Antoine Pietri · 7 years ago
  2. 4484f9d bpo-33021: Release the GIL during fstat() calls (GH-6019) by Nir Soffer · 7 years ago
  3. d7aed41 bpo-27645: Add support for native backup facility of SQLite (GH-4238) by Emanuele Gaifas · 7 years ago
  4. c10b288 bpo-30249: Improve struct.unpack_from() error messages (GH-6059) by Xiang Zhang · 7 years ago
  5. 3b20d34 bpo-33016: Fix potential use of uninitialized memory in nt._getfinalpathname (#6010) by Alexey Izbyshev · 7 years ago
  6. fc7df0e bpo-32999: Fix ABC.__subclasscheck__ crash (GH-6002) by INADA Naoki · 7 years ago
  7. bc3f228 bpo-32969: Expose some missing constants in zlib and fix the doc (GH-5988) by Xiang Zhang · 7 years ago
  8. 6921e73 bpo-33001: Prevent buffer overrun in os.symlink (GH-5989) by Steve Dower · 7 years ago
  9. 3e197c7 bpo-32903: Fix a memory leak in os.chdir() on Windows (GH-5801) by Alexey Izbyshev · 7 years ago
  10. 698dde1 bpo-31453: Add setter for min/max protocol version (#5259) by Christian Heimes · 7 years ago
  11. 05d9fe3 bpo-32947: OpenSSL 1.1.1-pre1 / TLS 1.3 fixes (#5663) by Christian Heimes · 7 years ago
  12. 6b5df90 bpo-32147: Improved perfomance of binascii.unhexlify(). (GH-4586) by Sergey Fedoseev · 7 years ago
  13. 19e7d48 bpo-32394: Remove some TCP options on old version Windows. (GH-5523) by animalize · 7 years ago
  14. 6f600ff bpo-32922: dbm.open() now encodes filename with the filesystem encoding. (GH-5832) by Serhiy Storchaka · 7 years ago
  15. a19fb3c bpo-32622: Native sendfile on windows (#5565) by Andrew Svetlov · 7 years ago
  16. 29eab55 bpo-30622: Fix NPN for OpenSSL 1.1.1-pre1 (#5876) by Christian Heimes · 7 years ago
  17. 186b606 bpo-17232: Clarify docs for -O and -OO command line options (#5839) by Cheryl Sabella · 7 years ago
  18. 6cdb795 bpo-30622: Improve NPN support detection (#5859) by Christian Heimes · 7 years ago
  19. 141c5e8 bpo-24334: Cleanup SSLSocket (#5252) by Christian Heimes · 7 years ago
  20. 42c35d9 bpo-31966: Fixed WindowsConsoleIO.write() for writing empty data. (GH-5754) by Serhiy Storchaka · 7 years ago
  21. 11a1493 [bpo-28414] Make all hostnames in SSL module IDN A-labels (GH-5128) by Christian Heimes · 7 years ago
  22. a049f57 Test that new_timezone can return the UTC singleton (gh-5318) by Paul Ganssle · 7 years ago
  23. 23ad6d0 bpo-32556: nt._getfinalpathname, nt._getvolumepathname and nt._getdiskusage now correctly convert from bytes. (GH-5761) by Steve Dower · 7 years ago
  24. f53d9f2 bpo-32604: Swap threads only if the interpreter is different. (gh-5778) by Eric Snow · 7 years ago
  25. b3caf38 closes bpo-32859: Don't retry dup3() if it is not available at runtime (GH-5708) by Alexey Izbyshev · 7 years ago
  26. 03e3c34 bpo-31333: Re-implement ABCMeta in C (#5273) by Ivan Levkivskyi · 7 years ago
  27. 4c6955e bpo-32604: Clean up created subinterpreters before runtime finalization. (gh-5709) by Eric Snow · 7 years ago
  28. 7745ec4 Update comment in posixmodule.c (GH-5681) by ngie-eign · 7 years ago
  29. d019bc8 bpo-31787: Prevent refleaks when calling __init__() more than once (GH-3995) by Oren Milman · 7 years ago
  30. 7766b96 bpo-32221: makeipaddr(): remove interface part + speedup (GH-5449) (#5449) by Коренберг Марк · 7 years ago
  31. 3c34aad bpo-29248: Fix os.readlink() on Windows (GH-5577) by SSE4 · 7 years ago
  32. bfe4fd5 Fix some warnings produced by different compilers. (#5593) by Serhiy Storchaka · 7 years ago
  33. c1e46e9 bpo-32777: Fix _Py_set_inheritable async-safety in subprocess (GH-5560) by Alexey Izbyshev · 7 years ago
  34. c3d9508 bpo-32746: Fix multiple typos (GH-5144) by Leo Arias · 7 years ago
  35. 4e9da0d bpo-32604: Fix memory leaks in the new _xxsubinterpreters module. (#5507) by Eric Snow · 7 years ago
  36. 383b32f Revert "bpo-31356: Add context manager to temporarily disable GC GH-5495 by Yury Selivanov · 7 years ago
  37. aa0735f bpo-32747: Remove trailing spaces in docstrings. (GH-5491) by oldk · 7 years ago
  38. c66f9f8 bpo-25988: Emit a warning when use or import ABCs from 'collections'. (#5460) by Serhiy Storchaka · 7 years ago
  39. b8d9032 bpo-28914: Fix compilation of select on Android (#5447) by Victor Stinner · 7 years ago
  40. 3d86e48 bpo-32681: Fix an uninitialized variable in the C implementation of os.dup2 (GH-5346) by Stéphane Wirtel · 7 years ago
  41. 83e64c8 bpo-32604: NULL-terminate kwlist in channel_drop_interpreter(). (gh-5437) by Eric Snow · 7 years ago
  42. 7f8bfc9 bpo-32604: Expose the subinterpreters C-API in a "private" stdlib module. (gh-1748) by Eric Snow · 7 years ago
  43. b6e43af bpo-28134: Auto-detect socket values from file descriptor (#1349) by Christian Heimes · 7 years ago
  44. 72a0d21 bpo-31356: Add context manager to temporarily disable GC (GH-4224) by Pablo Galindo · 7 years ago
  45. 0cd6bca bpo-20104: Fix leaks and errors in new os.posix_spawn (GH-5418) by Pablo Galindo · 7 years ago
  46. c65ef77 rename _imp initialization function to follow conventions (#5432) by Benjamin Peterson · 7 years ago
  47. 892d66e bpo-31429: Define TLS cipher suite on build time (#3532) by Christian Heimes · 7 years ago
  48. 8997f9c bpo-32705: Current Android does not have posix_spawn (#5413) by Chih-Hsuan Yen · 7 years ago
  49. 6c6ddf9 bpo-20104: Expose `posix_spawn` in the os module (GH-5109) by Pablo Galindo · 7 years ago
  50. f11b460 bpo-32373: Add socket.getblocking() method. (#4926) by Yury Selivanov · 7 years ago
  51. 0ceb717 Revert "bpo-32221: makeipaddr(): remove interface part + speedup (GH-4724)" (#5394) by Yury Selivanov · 7 years ago
  52. 059f58c bpo-32228: Reset raw_pos after unwinding the raw stream (#4858) by Nitish Chandra · 7 years ago
  53. f0a95f2 bpo-32660: Solaris should support constants like termios' FIONREAD (#5328) by jcea · 7 years ago
  54. 6c51d51 bpo-32659: Solaris "stat" should support "st_fstype" (#5307) by jcea · 7 years ago
  55. 47c0b1f bpo-32221: makeipaddr(): remove interface part + speedup (GH-4724) by Коренберг Марк · 7 years ago
  56. 7c68407 bpo-32622: Implement loop.sendfile() (#5271) by Andrew Svetlov · 7 years ago
  57. f13f12d bpo-32630: Use contextvars in decimal (GH-5278) by Yury Selivanov · 7 years ago
  58. 4defba3 bpo-31368: Expose preadv and pwritev in the os module (#5239) by Pablo Galindo · 7 years ago
  59. 61d478c bpo-31399: Let OpenSSL verify hostname and IP address (#3462) by Christian Heimes · 7 years ago
  60. d0e31b9 bpo-32454: socket closefd (#5048) by Christian Heimes · 7 years ago
  61. 2f050c7 bpo-32433: Optimized HMAC digest (#5023) by Christian Heimes · 7 years ago
  62. 58dc03c Cleanup dangling reference in get_timezone_utc_capi (#5317) by Paul Ganssle · 7 years ago
  63. f320be7 bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code (GH-5222) by Serhiy Storchaka · 7 years ago
  64. 2b822a0 bpo-32652: Defer pymain_set_global_config() call (#5303) by Victor Stinner · 7 years ago
  65. 04af5b1 bpo-10381: Add timezone to datetime C API (#5032) by Paul Ganssle · 7 years ago
  66. 6f6eb35 bpo-32248 - Implement `ResourceReader` and `get_resource_reader()` for zipimport (#5248) by Barry Warsaw · 7 years ago
  67. 22feeb8 bpo-32643: Drop support for a few private Task and Future APIs. (#5293) by Yury Selivanov · 7 years ago
  68. 8ded5b8 bpo-32030: Add _PyCoreConfig.module_search_paths (#4954) by Victor Stinner · 7 years ago
  69. 5de15f1 bpo-28046: Remove MACHDEPPATH from Modules/Setup.dist (#5289) by Victor Stinner · 7 years ago
  70. 9d411c1 bpo-32296: Make get_running_loop() another 4-5x faster (#5277) by Yury Selivanov · 7 years ago
  71. f23746a bpo-32436: Implement PEP 567 (#5027) by Yury Selivanov · 7 years ago
  72. 1211c9a bpo-32503: Avoid creating too small frames in pickles. (#5127) by Serhiy Storchaka · 7 years ago
  73. ff5be6e bpo-32598: Use autoconf to detect usable OpenSSL (#5242) by Christian Heimes · 7 years ago
  74. 05d68a8 bpo-9566: Fix size_t=>int downcast warnings (#5230) by Victor Stinner · 7 years ago
  75. e860089 bpo-32226: Fix memory leak in generic_alias_dealloc() (#5212) by Victor Stinner · 7 years ago
  76. 9f1b7b9 bpo-32403: Faster date and datetime constructors (#4993) by Paul Ganssle · 7 years ago
  77. 4d9aec0 bpo-31572: Get rid of PyObject_HasAttr() and _PyObject_HasAttrId() in the _io module. (#3726) by Serhiy Storchaka · 7 years ago
  78. 378edee bpo-32544: Speed up hasattr() and getattr() (GH-5173) by INADA Naoki · 7 years ago
  79. 94e1696 bpo-14976: Reentrant simple queue (#3346) by Antoine Pitrou · 7 years ago
  80. cb064fc bpo-31900: Fix localeconv() encoding for LC_NUMERIC (#4174) by Victor Stinner · 7 years ago
  81. 7ed7aea bpo-29240: Fix locale encodings in UTF-8 Mode (#5170) by Victor Stinner · 7 years ago
  82. 5b76bdb bpo-31993: Do not use memoryview when pickle large strings. (#5154) by Serhiy Storchaka · 7 years ago
  83. 0a2da50 bpo-31993: Do not create frames for large bytes and str objects (#5114) by Serhiy Storchaka · 7 years ago
  84. cb3ae55 bpo-29240: Ignore UTF-8 Mode in time module (#5148) by Victor Stinner · 7 years ago
  85. 2cba6b8 bpo-29240: readline now ignores the UTF-8 Mode (#5145) by Victor Stinner · 7 years ago
  86. b4ebaa7 bpo-32493: Not only AIX, but FreeBSD has uuid_create support (#5089) by David Carlier · 7 years ago
  87. af11a15 bpo-32282: Remove unnecessary check for `VersionHelpers.h` in `socketmodule.c` on Windows by Max Bélanger · 7 years ago
  88. 3cd7c6e bpo-31993: Do not allocate large temporary buffers in pickle dump. (#4353) by Olivier Grisel · 7 years ago
  89. 735ae8d bpo-29137: Remove fpectl module (#4789) by Nathaniel J. Smith · 7 years ago
  90. 502d551 bpo-32390: Fix compilation failure on AIX after f_fsid was added to os.statvfs() (#4972) by Michael Felt · 7 years ago
  91. ce5b0e9 bpo-32226: Make __class_getitem__ an automatic class method. (#5098) by Serhiy Storchaka · 7 years ago
  92. fbb490f bpo-32308: Replace empty matches adjacent to a previous non-empty match in re.sub(). (#4846) by Serhiy Storchaka · 7 years ago
  93. 0a37a30 closes bpo-32460: ensure all non-static globals have initializers (#5061) by Benjamin Peterson · 7 years ago
  94. 0d3ccb4 bpo-32399: Starting with AIX6.1 there is support in libc.a for uuid (RFC4122) (#4974) by Michael Felt · 7 years ago
  95. fc35932 Fix typo (#5049) by Andrew Svetlov · 7 years ago
  96. bbdb17d return the new file descriptor from os.dup2 (closes bpo-32441) (#5041) by Benjamin Peterson · 7 years ago
  97. e0aef4f bpo-31721: Allow Future._log_traceback to only be set to False (#5009) by Yury Selivanov · 7 years ago
  98. 3070b71 bpo-32422: Reduce lru_cache memory usage (GH-5008) by INADA Naoki · 7 years ago
  99. 0cf16f9 bpo-32363: Disable Task.set_exception() and Task.set_result() (#4923) by Yury Selivanov · 7 years ago
  100. 4856b0f bpo-32402: io: Add missing NULL check. (GH-4971) by INADA Naoki · 7 years ago