1. b66c0ff bpo-1635741: Fix compiler warning in _stat.c (GH-19822) by Victor Stinner · 5 years ago
  2. 69e802e bpo-40334: Fix test_peg_parser to actually use the old parser (GH-19778) by Lysandros Nikolaou · 5 years ago
  3. 360371f bpo-40291: Add support for CAN_J1939 sockets (GH-19538) by karl ding · 5 years ago
  4. 84724dd bpo-1635741: Port _stat module to multiphase initialization (GH-19798) by Dong-hee Na · 5 years ago
  5. 113feb3 bpo-40328: Add tool for generating cjk mapping headers (GH-19602) by Dong-hee Na · 5 years ago
  6. 2d87577 bpo-40286: Remove C implementation of Random.randbytes() (GH-19797) by Victor Stinner · 5 years ago
  7. e3dfb9b bpo-9216: Expose OpenSSL FIPS_mode() as _hashlib.get_fips_mode() (GH-19703) by Victor Stinner · 5 years ago
  8. 7036477 bpo-40421: Add PyFrame_GetBack() function (GH-19765) by Victor Stinner · 5 years ago
  9. 4386b90 bpo-40429: PyThreadState_GetFrame() returns a strong ref (GH-19781) by Victor Stinner · 5 years ago
  10. ae00a5a bpo-40428: Remove PyTuple_ClearFreeList() function (GH-19769) by Victor Stinner · 5 years ago
  11. f7bbf58 bpo-38880: List interpreters associated with a channel end (GH-17323) by Lewis Gaul · 5 years ago
  12. 8852ad4 bpo-40429: PyFrame_GetCode() now returns a strong reference (GH-19773) by Victor Stinner · 5 years ago
  13. 5e8c691 bpo-32604: Add support for a "default" arg in channel_recv(). (GH-19770) by Eric Snow · 5 years ago
  14. 6d86a23 bpo-40429: PyFrame_GetCode() result cannot be NULL (GH-19772) by Victor Stinner · 5 years ago
  15. a42ca74 bpo-40421: Add PyFrame_GetCode() function (GH-19757) by Victor Stinner · 5 years ago
  16. 2b74c83 bpo-40334: Support CO_FUTURE_BARRY_AS_BDFL in the new parser (GH-19721) by Pablo Galindo · 5 years ago
  17. e6f8abd bpo-38061: subprocess uses closefrom() on FreeBSD (GH-19697) by Victor Stinner · 5 years ago
  18. 162c567 bpo-38061: os.closerange() uses closefrom() on FreeBSD (GH-19696) by Victor Stinner · 5 years ago
  19. ebebb64 bpo-40334: Improve various PEG-Parser related stuff (GH-19669) by Lysandros Nikolaou · 5 years ago
  20. c5fc156 bpo-40334: PEP 617 implementation: New PEG parser for CPython (GH-19503) by Pablo Galindo · 5 years ago
  21. 9bee32b bpo-40138: Fix Windows os.waitpid() for large exit code (GH-19637) by Victor Stinner · 5 years ago
  22. bba760e Fix uninitialized struct member (GH-19589) by Raymond Hettinger · 5 years ago
  23. 5dd21f5 bpo-39849: Enable assertions in _testcapimodule.c and _testinternalcapi.c (GH-19623) by Hai Shi · 5 years ago
  24. 2b56031 bpo-40178: Convert the remaining os functions to Argument Clinic. (GH-19360) by Serhiy Storchaka · 5 years ago
  25. 12446e6 bpo-40179: Fix translation of #elif in Argument Clinic (GH-19364) by Serhiy Storchaka · 5 years ago
  26. 223221b bpo-40286: Makes simpler the relation between randbytes() and getrandbits() (GH-19574) by Serhiy Storchaka · 5 years ago
  27. 75a3378 bpo-40282: Allow random.getrandbits(0) (GH-19539) by Antoine Pitrou · 5 years ago
  28. 1a1bd2e bpo-40302: Replace PY_INT64_T with int64_t (GH-19573) by Victor Stinner · 5 years ago
  29. 9f5fe79 bpo-40286: Add randbytes() method to random.Random (GH-19527) by Victor Stinner · 5 years ago
  30. 1ae035b bpo-40302: Add pycore_byteswap.h header file (GH-19552) by Victor Stinner · 5 years ago
  31. a75e730 bpo-40294: Fix _asyncio when module is loaded/unloaded multiple times (GH-19542) by Jeffrey Quesnelle · 5 years ago
  32. 5eca75d bpo-40268: Reformat posixmodule.c includes (GH-19536) by Victor Stinner · 5 years ago
  33. a86b522 bpo-40277: Add a repr() to namedtuple's _tuplegetter to aid with introspection (GH-19537) by Ammar Askar · 5 years ago
  34. 4f98f46 bpo-40268: Remove unused imports in pylifecycle.c (GH-19533) by Victor Stinner · 5 years ago
  35. 361dcdc bpo-40268: Remove unused osdefs.h includes (GH-19532) by Victor Stinner · 5 years ago
  36. d9ea5ca bpo-40268: Remove unused pycore_pymem.h includes (GH-19531) by Victor Stinner · 5 years ago
  37. 4a21e57 bpo-40268: Remove unused structmember.h includes (GH-19530) by Victor Stinner · 5 years ago
  38. 62183b8 bpo-40268: Remove explicit pythread.h includes (#19529) by Victor Stinner · 5 years ago
  39. 675d9a3 bpo-40170: Convert PyObject_IS_GC() macro to a function (GH-19464) by Hai Shi · 5 years ago
  40. e560f90 bpo-40268: Move struct _gc_runtime_state to pycore_gc.h (GH-19515) by Victor Stinner · 5 years ago
  41. e5014be bpo-40268: Remove a few pycore_pystate.h includes (GH-19510) by Victor Stinner · 5 years ago
  42. 81a7be3 bpo-40268: Rename _PyInterpreterState_GET_UNSAFE() (GH-19509) by Victor Stinner · 5 years ago
  43. 4a3fe08 bpo-40268: Include explicitly pycore_interp.h (GH-19505) by Victor Stinner · 5 years ago
  44. cecf049 bpo-39481: Make functools.cached_property, partial, partialmethod generic (#19427) by Ethan Smith · 5 years ago
  45. 584a3cf closes bpo-40266, closes bpo-39953: Use numeric lib code if compiling against old OpenSSL. (GH-19506) by Benjamin Peterson · 5 years ago
  46. 0135598 bpo-40241: Add pycore_gc.h header file (GH-19494) by Victor Stinner · 5 years ago
  47. da7933e bpo-40268: Add _PyInterpreterState_GetConfig() (GH-19492) by Victor Stinner · 5 years ago
  48. 14d5331 bpo-40234: Revert "bpo-37266: Daemon threads are now denied in subinterpreters (GH-14049)" (GH-19456) by Victor Stinner · 5 years ago
  49. 909b87d closes bpo-39953: Generate ifdefs around library code definitions. (GH-19490) by Benjamin Peterson · 5 years ago
  50. 402e1cd bpo-31758: Prevent crashes when using an uninitialized _elementtree.XMLParser object (GH-3997) by Oren Milman · 5 years ago
  51. 8f87eef bpo-39943: Add the const qualifier to pointers on non-mutable PyBytes data. (GH-19472) by Serhiy Storchaka · 5 years ago
  52. 3e0dd37 closes bpo-39953: Update OpenSSL error codes table. (GH-19082) by Benjamin Peterson · 5 years ago
  53. cd8295f bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data. (GH-19345) by Serhiy Storchaka · 5 years ago
  54. f13072b bpo-40241: Add PyObject_GC_IsTracked and PyObject_GC_IsFinalized to the public C-API (GH-19461) by Pablo Galindo · 5 years ago
  55. 0361556 bpo-39481: PEP 585 for a variety of modules (GH-19423) by Batuhan Taşkaya · 5 years ago
  56. 7c4185d bpo-39481: PEP 585 for enumerate, AsyncGeneratorType, mmap (GH-19421) by Ethan Smith · 5 years ago
  57. a8403d0 Generic itertools.chain (GH-19417) by Ethan Smith · 5 years ago
  58. dcb04d9 bpo-40077: Remove redundant cast in json module (GH-19438) by Hai Shi · 5 years ago
  59. 97e0de0 bpo-25780: Expose CAN_RAW_JOIN_FILTERS in the socket module (GH-19190) by Zackery Spytz · 5 years ago
  60. b54a99d bpo-40082: trip_signal() uses the main interpreter (GH-19441) by Victor Stinner · 5 years ago
  61. 9205520 bpo-40170: PyObject_NEW() becomes an alias to PyObject_New() (GH-19379) by Victor Stinner · 5 years ago
  62. f9dd51e bpo-39481: Make os.DirEntry generic (GH-19415) by Batuhan Taşkaya · 5 years ago
  63. 87255be bpo-40089: Add _at_fork_reinit() method to locks (GH-19195) by Victor Stinner · 5 years ago
  64. 48b069a bpo-39481: Implementation for PEP 585 (#18239) by Guido van Rossum · 5 years ago
  65. 9cc3ebd bpo-40149: Implement traverse in _abc._abc_data (GH-19412) by Victor Stinner · 5 years ago
  66. 38aefc5 bpo-40170: PyObject_GET_WEAKREFS_LISTPTR() becomes a function (GH-19377) by Victor Stinner · 5 years ago
  67. 909f4a3 bpo-40190: Add support for _SC_AIX_REALMEM in sysconf (GH-19380) by Batuhan Taşkaya · 5 years ago
  68. b709302 bpo-40077: Fix potential refleaks of _json: traverse memo (GH-19344) by Hai Shi · 5 years ago
  69. 7a6f3bc bpo-1635741: Fix refleak in _locale init error handling (GH-19307) by Hai Shi · 5 years ago
  70. 45f7008 bpo-1635741: Port resource extension module to multiphase initialization (PEP 489) (GH-19252) by Hai Shi · 5 years ago
  71. 65a796e bpo-40094: Add os.waitstatus_to_exitcode() (GH-19201) by Victor Stinner · 5 years ago
  72. eacc074 bpo-40071: Fix potential crash in _functoolsmodule.c (GH-19273) by Paulo Henrique Silva · 5 years ago
  73. 5be8241 bpo-1635741: Port math module to multiphase initialization (GH-19243) by Dong-hee Na · 5 years ago
  74. 1cb763b bpo-1635741: Port _uuid module to multiphase initialization (GH-19242) by Dong-hee Na · 5 years ago
  75. 63ba5cc bpo-40121: Fixes audit event raised on creating a new socket (GH-19238) by Steve Dower · 5 years ago
  76. 53e4c91 bpo-40077: Convert _abc module to use PyType_FromSpec() (GH-19202) by Dong-hee Na · 5 years ago
  77. 016bdd5 bpo-40024: Update _elementtree to use PyModule_AddType() (GH-19205) by Dong-hee Na · 5 years ago
  78. 33f15a1 bpo-40077: Convert _json module to use PyType_FromSpec() (GH-19177) by Dong-hee Na · 5 years ago
  79. 7281898 bpo-38644: Pass tstate explicitly in signalmodule.c (GH-19184) by Victor Stinner · 5 years ago
  80. b09ae3f bpo-40071: Fix refleak in _functools module (GH19172) by Paulo Henrique Silva · 5 years ago
  81. 5c3cda0 bpo-39947: Add PyThreadState_GetID() function (GH-19163) by Victor Stinner · 5 years ago
  82. 0e427c6 bpo-39947: Add _PyThreadState_GetDict() function (GH-19160) by Victor Stinner · 5 years ago
  83. 3072338 bpo-39947: Use PyThreadState_GetFrame() (GH-19159) by Victor Stinner · 5 years ago
  84. 87d3b9d bpo-39882: Add _Py_FatalErrorFormat() function (GH-19157) by Victor Stinner · 5 years ago
  85. 7668a8b Use calloc-based functions, not malloc. (GH-19152) by Andy Lester · 5 years ago
  86. 7dd549e bpo-1635741: Port _functools module to multiphase initialization (PEP 489) (GH-19151) by Paulo Henrique Silva · 5 years ago
  87. f3d5ac4 bpo-1635741: Port operator module to multiphase initialization (PEP 489) (GH-19150) by Paulo Henrique Silva · 5 years ago
  88. 37fcbb6 bpo-40024: Update C extension modules to use PyModule_AddType() (GH-19119) by Dong-hee Na · 5 years ago
  89. 93460d0 bpo-1635741: Port _weakref extension module to multiphase initialization (PEP 489) (GH-19140) by Victor Stinner · 5 years ago
  90. f5c7cab bpo-40014: Fix os.getgrouplist() (GH-19126) by Victor Stinner · 5 years ago
  91. 472fc84 bpo-39689: Do not use native packing for format "?" with standard size (GH-18969) by Stefan Krah · 5 years ago
  92. 6000087 closes bpo-40017: Add CLOCK_TAI constant to the time module. (GH-19096) by Russell Owen · 5 years ago
  93. 188078c Revert "bpo-1635741: Port _weakref extension module to multiphase initialization (PEP 489) (GH-19084)" (#19128) by Victor Stinner · 5 years ago
  94. 8dd1792 bpo-40036: Deleting duplicates in itertoolsmodule.c (GH-18958) by AlphaHot · 5 years ago
  95. 8ec7370 bpo-40014: Fix os.getgrouplist() on macOS (GH-19118) by Victor Stinner · 5 years ago
  96. bd409bb bpo-1635741: Port time module to multiphase initialization (PEP 489) (GH-19107) by Paulo Henrique Silva · 5 years ago
  97. 05e4a29 bpo-40024: Add PyModule_AddType() helper function (GH-19088) by Dong-hee Na · 5 years ago
  98. b146568 bpo-39652: Truncate the column name after '[' only if PARSE_COLNAMES is set. (GH-18942) by Serhiy Storchaka · 5 years ago
  99. d2a8e5b bpo-40010: COMPUTE_EVAL_BREAKER() checks for subinterpreter (GH-19087) by Victor Stinner · 5 years ago
  100. 8334f30 bpo-1635741: Port _weakref extension module to multiphase initialization (PEP 489) (GH-19084) by Hai Shi · 5 years ago