1. 2438cdf bpo-36085: Enable better DLL resolution on Windows (GH-12302) by Steve Dower · 5 years ago
  2. 32119e1 bpo-35947: Update Windows to the current version of libffi (GH-11797) by Paul Monson · 5 years ago
  3. 2f54908 bpo-36471: Add _Py_RunMain() (GH-12618) by Victor Stinner · 5 years ago
  4. 5f45979 bpo-35194: cjkcodec: check the encoded value is not truncated (GH-10432) by Alexey Izbyshev · 5 years ago
  5. d93fbbf bpo-35941: Fix ssl certificate enumeration for windows (GH-12486) by kctherookie · 5 years ago
  6. 3eca28c bpo-29515: add missing socket.IPPROTO_* constants on Windows (GH-12183) by Giampaolo Rodola · 5 years ago
  7. 8abd7c7 bpo-36387: Refactor getenvironment() in _winapi.c. (GH-12482) by Serhiy Storchaka · 5 years ago
  8. d929f18 bpo-36443: Disable C locale coercion and UTF-8 Mode by default (GH-12589) by Victor Stinner · 5 years ago
  9. 5ac27a5 bpo-36444: Rework _Py_InitializeFromConfig() API (GH-12576) by Victor Stinner · 5 years ago
  10. 364f0b0 bpo-35810: Incref heap-allocated types in PyObject_Init (GH-11661) by Eddie Elizondo · 5 years ago
  11. 484f20d bpo-36444: Add _PyCoreConfig._init_main (GH-12572) by Victor Stinner · 5 years ago
  12. 8b9dbc0 bpo-36444: Remove _PyMainInterpreterConfig (GH-12571) by Victor Stinner · 5 years ago
  13. f8ba6f5 bpo-36301: Cleanup preconfig.c and coreconfig.c (GH-12563) by Victor Stinner · 5 years ago
  14. 414b1cd bpo-36436: Fix _testcapi.pymem_buffer_overflow() (GH-12560) by Victor Stinner · 5 years ago
  15. 0523c39 bpo-36430: Fix a possible reference leak in itertools.count(). (GH-12551) by Zackery Spytz · 5 years ago
  16. 2000495 bpo-36301: Remove _PyCoreConfig.preconfig (GH-12546) by Victor Stinner · 5 years ago
  17. f78a5e9 bpo-36301: Add _Py_GetEnv() function (GH-12542) by Victor Stinner · 5 years ago
  18. 1075d16 bpo-36301: Add _Py_GetConfigsAsDict() function (GH-12540) by Victor Stinner · 5 years ago
  19. f72346c bpo-36301: Cleanup preconfig code (GH-12535) by Victor Stinner · 5 years ago
  20. 5e33378 bpo-36421: Fix a possible double decref in _ctypes.c's PyCArrayType_new(). (GH-12530) by Zackery Spytz · 5 years ago
  21. c5c6cda asyncio: PendingDeprecationWarning -> DeprecationWarning (GH-12494) by Inada Naoki · 5 years ago
  22. 9a0000d bpo-36256: Fix bug in parsermodule when parsing if statements (GH-12477) by Pablo Galindo · 5 years ago
  23. aa3ecb8 bpo-36285: Fix integer overflow in the array module. (GH-12317) by sth · 5 years ago
  24. e9a1dcb bpo-8677: use PY_SSIZE_T_CLEAN in socketmodule.c (GH-12467) by Inada Naoki · 5 years ago
  25. c5a216e bpo-8677: use PY_SSIZE_T_CLEAN in Modules/_gdbmodule.c (GH-12464) by Inada Naoki · 5 years ago
  26. f29084d bpo-36301: Add _PyRuntime.pre_initialized (GH-12457) by Victor Stinner · 5 years ago
  27. dcf6171 bpo-36236: Handle removed cwd at Python init (GH-12424) by Victor Stinner · 5 years ago
  28. f5f336a bpo-36356: pymain_free() calls _PyRuntime_Finalize() (GH-12435) by Victor Stinner · 5 years ago
  29. fecc4f2 bpo-36356: Release Unicode interned strings on Valgrind (#12431) by Victor Stinner · 5 years ago
  30. 29198ea bpo-8677: use PY_SSIZE_T_CLEAN in sqlite (GH-12434) by Inada Naoki · 5 years ago
  31. faddaed bpo-36352: Avoid hardcoded MAXPATHLEN size in getpath.c (GH-12423) by Victor Stinner · 5 years ago
  32. 5f9cf23 bpo-36301: Error if decoding pybuilddir.txt fails (GH-12422) by Victor Stinner · 5 years ago
  33. 7b14f0c bpo-36352: Add error handling to getpath.c (GH-12421) by Victor Stinner · 5 years ago
  34. c183444 bpo-36301: Fix Py_Main() memory leaks (GH-12420) by Victor Stinner · 5 years ago
  35. 6a16b18 bpo-36297: remove "unicode_internal" codec (GH-12342) by Inada Naoki · 5 years ago
  36. c11183c bpo-36097: Use only public C-API in the_xxsubinterpreters module (adding as necessary). (gh-12359) by Eric Snow · 5 years ago
  37. 74f6568 bpo-36301: Add _PyWstrList structure (GH-12343) by Victor Stinner · 5 years ago
  38. 3191391 bpo-36127: Argument Clinic: inline parsing code for keyword parameters. (GH-12058) by Serhiy Storchaka · 5 years ago
  39. d53fe5f bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264) by Serhiy Storchaka · 5 years ago
  40. 8b5bdda bpo-31904: Adapt the _signal module to VxWorks RTOS (GH-12304) by pxinwr · 5 years ago
  41. 8b91eda bpo-36251: Fix format strings used in match_repr() and stdprinter_repr(). (GH-12252) by sth · 5 years ago
  42. 738c19f closes bpo-33376: Update to Unicode 12.0.0. (GH-12256) by Benjamin Peterson · 5 years ago
  43. 0411411 Rework integer overflow path in math.prod and add more tests (GH-11809) by Pablo Galindo · 5 years ago
  44. 1b304f9 Remove d_initial from the parser as it is unused (GH-12212) by tyomitch · 5 years ago
  45. 8479a34 bpo-33608: Make sure locks in the runtime are properly re-created. (gh-12245) by Eric Snow · 5 years ago
  46. 495da29 bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086) by Guido van Rossum · 5 years ago
  47. dc07894 bpo-36139: Fix mmap_object_dealloc(): hold the GIL to call PyMem_Free() (GH-12199) by Davide Rizzo · 5 years ago
  48. bb9593a closes bpo-36139: release GIL around munmap(). (GH-12073) by Davide Rizzo · 5 years ago
  49. b71e28e bpo-36209: Fix typo on hashlib error message (GH-12194) by Emmanuel Arias · 5 years ago
  50. c656e25 bpo-36142: Add _PyPreConfig_SetAllocator() (GH-12187) by Victor Stinner · 5 years ago
  51. 7d2ef3e bpo-36142: _PyPreConfig_Write() sets the allocator (GH-12186) by Victor Stinner · 5 years ago
  52. adfffc7 Fix the C function signature for _collections._tuplegetter.__reduce__. (GH-12180) by Serhiy Storchaka · 5 years ago
  53. 359a2f3 bpo-33012: Fix compilation warnings in memoryobject.c and _collectionsmodule.c (GH-12179) by Stéphane Wirtel · 5 years ago
  54. 6dcb542 bpo-36142: Add _PyPreConfig_ReadFromArgv() (GH-12173) by Victor Stinner · 5 years ago
  55. cad1f74 bpo-36142: Add _PyPreConfig structure (GH-12172) by Victor Stinner · 5 years ago
  56. b7bc283 bpo-36179: Fix ref leaks in _hashopenssl (GH-12158) by Christian Heimes · 5 years ago
  57. 4d61e6e Revert: bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (GH-11617) (GH-12159) by Victor Stinner · 5 years ago
  58. 8c17d92 add missing break statement (GH-12147) by Inada Naoki · 5 years ago
  59. 848037c Use names SEEK_SET, etc instead of magic number (GH-12057) by ngie-eign · 5 years ago
  60. bcfa450 bpo-36097: Use only public C-API in the_xxsubinterpreters module (adding as necessary). (#12003) by Eric Snow · 5 years ago
  61. 95e2cbf bpo-36142: Move command line parsing to coreconfig.c (GH-12123) by Victor Stinner · 5 years ago
  62. 62be763 bpo-36142: Remove _PyMain structure (GH-12120) by Victor Stinner · 5 years ago
  63. dfe8847 bpo-36142: Rework error reporting in pymain_main() (GH-12113) by Victor Stinner · 5 years ago
  64. f684d83 bpo-36142: Exclude coreconfig.h from Py_LIMITED_API (GH-12111) by Victor Stinner · 5 years ago
  65. f57cd82 bpo-36106: Resolve sinpi name clash with libm (IEEE-754 violation). (GH-12027) by Dima Pasechnik · 5 years ago
  66. 6673dec bpo-24643: Fix "#define timezone _timezone" clashes on Windows (GH-12019) by Zackery Spytz · 5 years ago
  67. 234531b bpo-36030: Add _PyTuple_FromArray() function (GH-11954) by Sergey Fedoseev · 5 years ago
  68. a24107b bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112) by Serhiy Storchaka · 5 years ago
  69. 6a44f6e bpo-36048: Use __index__() instead of __int__() for implicit conversion if available. (GH-11952) by Serhiy Storchaka · 5 years ago
  70. ef4ac96 bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (GH-11617) by Eric Snow · 5 years ago
  71. 463572c bpo-36101: remove non-ascii characters in docstring (GH-12018) by animalize · 5 years ago
  72. e895de3 bpo-35813: Tests and docs for shared_memory (#11816) by Davin Potts · 5 years ago
  73. abe5922 fix _abc.c compile error on Cygwin (GH-8445) by E. M. Bray · 5 years ago
  74. 64d6cc8 bpo-35724: Explicitly require the main interpreter for signal-handling. (GH-11530) by Eric Snow · 5 years ago
  75. be3b295 bpo-35886: Make PyInterpreterState an opaque type in the public API. (GH-11731) by Eric Snow · 5 years ago
  76. 175421b bpo-36016: Add generation option to gc.getobjects() (GH-11909) by Pablo Galindo · 5 years ago
  77. f36f892 bpo-36068: Make _tuplegetter objects serializable (GH-11981) by Joe Jevnik · 5 years ago
  78. 4371c0a bpo-34572: change _pickle unpickling to use import rather than retrieving from sys.modules (GH-9047) by tjb900 · 5 years ago
  79. 4a7f44a bpo-34294: re module, fix wrong capturing groups in rare cases. (GH-11546) by animalize · 5 years ago
  80. 09fbcd6 bpo-35942: Improve the error message if __fspath__ returns invalid types in path_converter (GH-11831) by Pablo Galindo · 5 years ago
  81. 1bf8845 bpo-34720: Fix test_importlib.test_bad_traverse for AIX (GH-9391) by Michael Felt · 5 years ago
  82. 38f11cc bpo-1054041: Exit properly after an uncaught ^C. (#11862) by Gregory P. Smith · 5 years ago
  83. 3643322 bpo-35984: _xxsubinterpreters: Fix memory leak in _channel_send() (GH-11845) by Alexey Izbyshev · 5 years ago
  84. bb3c05d closes bpo-35991: Fix a potential double free in Modules/_randommodule.c. (GH-11849) by Zackery Spytz · 5 years ago
  85. 73d6002 Remove stray quote in os.replace docstring. (GH-11556) by Anthony Sottile · 5 years ago
  86. 4207907 Fix division by 0 when checking for overflow in math.prod (GH-11808) by Pablo Galindo · 5 years ago
  87. 2dda72a lru_cache: Add more comments. Fix comment typos. Clarify a comment. (GH-11795) by Raymond Hettinger · 5 years ago
  88. bc09851 bpo-35606: Implement math.prod (GH-11359) by Pablo Galindo · 5 years ago
  89. 89427cd bpo-32417: Make timedelta arithmetic respect subclasses (#10902) by Paul Ganssle · 6 years ago
  90. b82bfac bpo-29734: nt._getfinalpathname handle leak (GH-740) by Mark Becwar · 6 years ago
  91. 4860f01 bpo-33895: Relase GIL while calling functions that acquire Windows loader lock (GH-7789) by Tony Roberts · 6 years ago
  92. e5ef45b bpo-35813: Added shared_memory submodule of multiprocessing. (#11664) by Davin Potts · 6 years ago
  93. 325e4ba bpo-35537: Fix function name in os.posix_spawnp() errors (GH-11719) by Victor Stinner · 6 years ago
  94. 80c5dfe bpo-35537: Add setsid parameter to os.posix_spawn() and os.posix_spawnp() (GH-11608) by Joannah Nanjekye · 6 years ago
  95. 05f1b93 Speed-up argument parsing for common cases in deque.__init__()(GH-11717) by Raymond Hettinger · 6 years ago
  96. ffdf1c3 Consistently move the misses update to just before the user function call (GH-11715) by Raymond Hettinger · 6 years ago
  97. dcfcd14 bpo-35766: Merge typed_ast back into CPython (GH-11645) by Guido van Rossum · 6 years ago
  98. cfd735e Move float conversion into a macro. Apply to fsum (GH-11698) by Raymond Hettinger · 6 years ago
  99. 742d768 bpo-35847: RISC-V needs CTYPES_PASS_BY_REF_HACK (GH-11694) by Andreas Schwab · 6 years ago
  100. 808180c Fast path for int inputs to math.dist() and math.hypot() (GH-11692) by Raymond Hettinger · 6 years ago