1. d2a8e5b bpo-40010: COMPUTE_EVAL_BREAKER() checks for subinterpreter (GH-19087) by Victor Stinner · 4 years, 6 months ago
  2. 8334f30 bpo-1635741: Port _weakref extension module to multiphase initialization (PEP 489) (GH-19084) by Hai Shi · 4 years, 6 months ago
  3. 13397ee bpo-39824: Convert PyModule_GetState() to get_module_state() (GH-19076) by Hai Shi · 4 years, 6 months ago
  4. 77248a2 bpo-1635741: Port _collections module to multiphase initialization (GH-19074) by Dong-hee Na · 4 years, 6 months ago
  5. 50e6e99 bpo-39984: Move pending calls to PyInterpreterState (GH-19066) by Victor Stinner · 4 years, 6 months ago
  6. 3cde884 Remove unused variable to fix compiler warning in _threadmodule.c (GH-19064) by Pablo Galindo · 4 years, 6 months ago
  7. 8849e59 bpo-39984: trip_signal() uses PyGILState_GetThisThreadState() (GH-19061) by Victor Stinner · 4 years, 6 months ago
  8. 4657a8a bpo-1635741: Port _heapq module to multiphase initialization (GH19057) by Dong-hee Na · 4 years, 6 months ago
  9. 23ef89d bpo-39984: _PyThreadState_DeleteCurrent() takes tstate (GH-19051) by Victor Stinner · 4 years, 6 months ago
  10. 514c469 bpo-1635741: Port itertools module to multiphase initialization (GH-19044) by Dong-hee Na · 4 years, 6 months ago
  11. 5b1ef20 bpo-39824: module_traverse() don't call m_traverse if md_state=NULL (GH-18738) by Victor Stinner · 4 years, 6 months ago
  12. 982307b bpo-39943: Remove unused self from find_nfc_index() (GH-18973) by Andy Lester · 4 years, 6 months ago
  13. 2037502 bpo-1635741: Port _ctypes_test extension to multiphase initialization (PEP 489) (GH-19012) by Hai Shi · 4 years, 6 months ago
  14. 5f104d5 bpo-39968: Fix a typo error in get_readline_state() (GH-19028) by Hai Shi · 4 years, 6 months ago
  15. 356c878 bpo-1635741: Port _statistics module to multiphase initialization (GH-19015) by Dong-hee Na · 4 years, 6 months ago
  16. f707d94 bpo-39968: Convert extension modules' macros of get_module_state() to inline functions (GH-19017) by Hai Shi · 4 years, 6 months ago
  17. b81f40f bpo-39582: ossaudiodev module update helpers signature for ioctl calls. (GH-18412) by David CARLIER · 4 years, 6 months ago
  18. 5208b4b bpo-39871: Fix possible SystemError in atan2, copysign and remainder (GH-18806) by Zackery Spytz · 4 years, 6 months ago
  19. 3a8c562 Revert "bpo-39087: Add _PyUnicode_GetUTF8Buffer()" (GH-18985) by Inada Naoki · 4 years, 6 months ago
  20. c7ad974 bpo-39087: Add _PyUnicode_GetUTF8Buffer() (GH-17659) by Inada Naoki · 4 years, 6 months ago
  21. 8fb02b6 bpo-39947: Add PyThreadState_GetInterpreter() (GH-18981) by Victor Stinner · 4 years, 6 months ago
  22. be79373 bpo-39947: Add PyInterpreterState_Get() function (GH-18979) by Victor Stinner · 4 years, 6 months ago
  23. ff4584c bpo-39947: Use _PyInterpreterState_GET_UNSAFE() (GH-18978) by Victor Stinner · 4 years, 6 months ago
  24. 309d7cc bpo-35370: Add _PyEval_SetTrace() function (GH-18975) by Victor Stinner · 4 years, 6 months ago
  25. 3f2f4fe bpo-39947: Move get_recursion_depth() to _testinternalcapi (GH-18974) by Victor Stinner · 4 years, 6 months ago
  26. 1dd3794 Simplify defaultdict.__or__ (#18931) by Brandt Bucher · 4 years, 6 months ago
  27. 196f1eb bpo-1635741: Fix refleaks of time module error handling (GH-18486) by Hai Shi · 4 years, 6 months ago
  28. aa0c080 bpo-1635741: Fix potential refleaks in binascii module (GH-18613) by Hai Shi · 4 years, 6 months ago
  29. 41fbf86 bpo-1635741: Port audioop extension module to multiphase initialization (PEP 489) (GH-18608) by Hai Shi · 4 years, 6 months ago
  30. a158168 bpo-1635741: Port _locale extension module to multiphase initialization (PEP 489) (GH-18358) by Hai Shi · 4 years, 6 months ago
  31. 051b9d0 closes bpo-39926: Update Unicode to 13.0.0. (GH-18910) by Benjamin Peterson · 4 years, 6 months ago
  32. 00d7cd8 bpo-38075: Fix random_seed(): use PyObject_CallOneArg() (GH-18897) by Victor Stinner · 4 years, 6 months ago
  33. 8510f43 bpo-1294959: Add sys.platlibdir attribute (GH-18381) by Victor Stinner · 4 years, 6 months ago
  34. 3225b9f bpo-39877: Remove useless PyEval_InitThreads() calls (GH-18883) by Victor Stinner · 4 years, 6 months ago
  35. eebaa9b bpo-38249: Expand Py_UNREACHABLE() to __builtin_unreachable() in the release mode. (GH-16329) by Serhiy Storchaka · 4 years, 6 months ago
  36. e5ccc94 bpo-38643: Raise SystemError instead of crashing when PyNumber_ToBase is called with invalid base. (GH-18863) by Serhiy Storchaka · 4 years, 6 months ago
  37. dccd41e bpo-39822: Use NULL instead of None for empty attrib in Element. (GH-18735) by Serhiy Storchaka · 4 years, 6 months ago
  38. 88944a4 bpo-39903: Fix double decref in _elementtree.Element.__getstate__ (GH-18850) by Serhiy Storchaka · 4 years, 6 months ago
  39. 5572870 bpo-39573: Use Py_IS_TYPE() macro to check for types (GH-18809) by Andy Lester · 4 years, 6 months ago
  40. 57c9d17 bpo-36144: Implement defaultdict union (GH-18729) by Brandt Bucher · 4 years, 6 months ago
  41. e63117a closes bpo-39859: Do not downcast result of hstrerror (GH-18790) by Andy Lester · 4 years, 6 months ago
  42. 942f7a2 bpo-39674: Revert "bpo-37330: open() no longer accept 'U' in file mode (GH-16959)" (GH-18767) by Victor Stinner · 4 years, 6 months ago
  43. 702e09f bpo-39770, array module: Remove unnecessary descriptor counting (GH-18675) by Andy Lester · 4 years, 6 months ago
  44. dffe4c0 bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601) by Andy Lester · 4 years, 6 months ago
  45. 4991cf4 bpo-39802: Only expose set_escdelay and set_tabsize when curses extensions are activated (GH-18705) by Batuhan Taşkaya · 4 years, 6 months ago
  46. 28d0bca bpo-38913: Fix segfault in Py_BuildValue("(s#O)", ...) if entered with exception raised. (GH-18656) by Serhiy Storchaka · 4 years, 6 months ago
  47. 4edc95c bpo-39495: Remove default value from C impl of TreeBuilder.start (GH-18275) by Shantanu · 4 years, 6 months ago
  48. 1f577ce bpo-39378: partial of PickleState struct should be traversed. (GH-18046) by Hai Shi · 4 years, 6 months ago
  49. eb47fd5 Cosmetic change to match the surrounding code. (#18704) by Stefan Krah · 4 years, 6 months ago
  50. 815280e bpo-39794: Add --without-decimal-contextvar (#18702) by Stefan Krah · 4 years, 6 months ago
  51. e263bb1 Fuzz struct.unpack and catch RecursionError in re.compile (GH-18679) by Ammar Askar · 4 years, 7 months ago
  52. c3fa634 closes bpo-39736: const strings in Modules/_datetimemodule.c and Modules/_testbuffer.c (GH-18637) by Andy Lester · 4 years, 7 months ago
  53. 9f37872 bpo-39681: Fix C pickle regression with minimal file-like objects (#18592) by Antoine Pitrou · 4 years, 7 months ago
  54. 559e7f1 bpo-39648: Expand math.gcd() and math.lcm() to handle multiple arguments. (GH-18604) by Serhiy Storchaka · 4 years, 7 months ago
  55. fd5116c bpo-35950: Raise UnsupportedOperation in BufferedReader.truncate() (GH-18586) by Berker Peksag · 4 years, 7 months ago
  56. 90930e6 bpo-39576: Prevent memory error for overly optimistic precisions (GH-18581) by Stefan Krah · 4 years, 7 months ago
  57. 1246d89 Use the new recommended number of repetitions in the refleak tests. (#18569) by Stefan Krah · 4 years, 7 months ago
  58. 9b833e00 Update runall.bat to the latest Windows build system. (#18571) by Stefan Krah · 4 years, 7 months ago
  59. c0cb8be Valgrind no longer supports --db-attach=yes. (#18568) by Stefan Krah · 4 years, 7 months ago
  60. f2ee21d bpo-39479:Add math.lcm() function: Least Common Multiple (#18547) by ananthan-123 · 4 years, 7 months ago
  61. 5d38517 bpo-1635741: Port _bz2 extension module to multiphase initialization(PEP 489) (GH-18050) by Hai Shi · 4 years, 7 months ago
  62. 4c1b6a6 bpo-1635741: Port _abc extension to multiphase initialization (PEP 489) (GH-18030) by Hai Shi · 4 years, 7 months ago
  63. 7d79568 bpo-1635741: Port _contextvars module to multiphase initialization (PEP 489) (GH-18374) by Hai Shi · 4 years, 7 months ago
  64. 1b55b65 bpo-39573: Clean up modules and headers to use Py_IS_TYPE() function (GH-18521) by Dong-hee Na · 4 years, 7 months ago
  65. b2b6e27 bpo-1635741: Port _crypt extension module to multiphase initialization (PEP 489) (GH-18404) by Hai Shi · 4 years, 7 months ago
  66. 9aeb0ef bpo-39573: Update clinic to use Py_IS_TYPE() function (GH-18507) by Dong-hee Na · 4 years, 7 months ago
  67. 7514f4f bpo-39184: Add audit events to functions in `fcntl`, `msvcrt`, `os`, `resource`, `shutil`, `signal`, `syslog` (GH-18407) by Saiyang Gou · 4 years, 7 months ago
  68. 597ebed closes bpo-39621: Make buf arg to md5_compress be const. (GH-18497) by Andy Lester · 4 years, 7 months ago
  69. e9e7d28 bpo-35081: Move dtoa.h header to the internal C API (GH-18489) by Victor Stinner · 4 years, 7 months ago
  70. e6be9b5 closes bpo-39605: Fix some casts to not cast away const. (GH-18453) by Andy Lester · 4 years, 7 months ago
  71. ffd9753 bpo-39245: Switch to public API for Vectorcall (GH-18460) by Petr Viktorin · 4 years, 7 months ago
  72. 1ea45ae bpo-1635741: Port _codecs extension module to multiphase initialization (PEP 489) (GH-18065) by Hai Shi · 4 years, 7 months ago
  73. c6dedde bpo-39590: make deque.__contains__ and deque.count hold strong references (GH-18421) by sweeneyde · 4 years, 7 months ago
  74. 7f6f7ee bpo-39573: Use Py_TYPE() macro in ctypes.h (GH-18411) by Dong-hee Na · 4 years, 7 months ago
  75. 60ac6ed bpo-39573: Use Py_SET_SIZE() function (GH-18402) by Victor Stinner · 4 years, 7 months ago
  76. d2ec81a bpo-39573: Add Py_SET_TYPE() function (GH-18394) by Victor Stinner · 4 years, 7 months ago
  77. daa9756 bpo-39573: Use Py_TYPE() macro in Modules directory (GH-18393) by Victor Stinner · 4 years, 7 months ago
  78. c86a112 bpo-39573: Add Py_SET_REFCNT() function (GH-18389) by Victor Stinner · 4 years, 7 months ago
  79. a93c51e bpo-39573: Use Py_REFCNT() macro (GH-18388) by Victor Stinner · 4 years, 7 months ago
  80. 95f6001 bpo-39184: Add audit events to command execution functions in os and pty modules (GH-17824) by Saiyang Gou · 4 years, 7 months ago
  81. 40e547d bpo-39542: Make _Py_NewReference() opaque in C API (GH-18346) by Victor Stinner · 4 years, 7 months ago
  82. cb1c074 closes bpo-39510: Fix use-after-free in BufferedReader.readinto() (GH-18295) by Philipp Gesang · 4 years, 7 months ago
  83. 49932fe bpo-39542: Simplify _Py_NewReference() (GH-18332) by Victor Stinner · 4 years, 7 months ago
  84. c6e5c11 bpo-39489: Remove COUNT_ALLOCS special build (GH-18259) by Victor Stinner · 4 years, 7 months ago
  85. 0f2f35e bpo-39492: Fix a reference cycle between reducer_override and a Pickler instance (GH-18266) by Pierre Glaser · 4 years, 7 months ago
  86. 78c7183 bpo-39496: Remove redundant checks from _sqlite/cursor.c (GH-18270) by Alex Henrie · 4 years, 7 months ago
  87. 7dc1401 bpo-39511: Fix multiprocessing semlock_acquire() (GH-18298) by Victor Stinner · 4 years, 7 months ago
  88. 2a4903f bpo-38631: Add _Py_NO_RETURN to functions calling Py_FatalError() (GH-18278) by Victor Stinner · 4 years, 7 months ago
  89. 1f44e77 bpo-39497: Remove unused variable from pysqlite_cursor_executescript (GH-18271) by Alex Henrie · 4 years, 7 months ago
  90. c38fd0d bpo-39353: binascii.crc_hqx() is no longer deprecated (GH-18276) by Victor Stinner · 4 years, 7 months ago
  91. 188bb5b bpo-39494: Remove extra null terminators from kwlist vars (GH-18267) by Alex Henrie · 4 years, 8 months ago
  92. 13c1c35 bpo-39393: Misleading error message on dependent DLL resolution failure (GH-18093) by Zackery Spytz · 4 years, 8 months ago
  93. 656c45e bpo-38631: Avoid Py_FatalError() in GC collect() (GH-18164) by Victor Stinner · 4 years, 8 months ago
  94. b8d1262 bpo-39395: putenv() and unsetenv() always available (GH-18135) by Victor Stinner · 4 years, 8 months ago
  95. 161e7b3 bpo-39413: Implement os.unsetenv() on Windows (GH-18163) by Victor Stinner · 4 years, 8 months ago
  96. e9652e8 bpo-39426: Fix outdated default and highest protocols in docs (GH-18154) by Mark Dickinson · 4 years, 8 months ago
  97. 79f89e6 bpo-39421: Fix posible crash in heapq with custom comparison operators (GH-18118) by Pablo Galindo · 4 years, 8 months ago
  98. b477d19 bpo-39406: Implement os.putenv() with setenv() if available (GH-18128) by Victor Stinner · 4 years, 8 months ago
  99. 0852c7d bpo-39406: os.putenv() avoids putenv_dict on Windows (GH-18126) by Victor Stinner · 4 years, 8 months ago
  100. b73dd02 Revert "bpo-39413: Implement os.unsetenv() on Windows (GH-18104)" (GH-18124) by Victor Stinner · 4 years, 8 months ago