1. 4b66fa6 bpo-39200: Correct the error message for range() empty constructor (GH-17813) by Pablo Galindo · 4 years, 9 months ago
  2. 22424c0 Document CodeType.replace (GH-17776) by Anthony Sottile · 4 years, 9 months ago
  3. dfef986 bpo-38588: Optimize list comparison. (GH-17766) by Inada Naoki · 4 years, 9 months ago
  4. 2d5bf56 bpo-38588: Fix possible crashes in dict and list when calling PyObject_RichCompareBool (GH-17734) by Dong-hee Na · 4 years, 9 months ago
  5. d9e561d bpo-38610: Fix possible crashes in several list methods (GH-17022) by Zackery Spytz · 4 years, 10 months ago
  6. c0052f3 closes bpo-30364: Replace deprecated no_address_safety_analysis attribute. (GH-17702) by Batuhan Taşkaya · 4 years, 10 months ago
  7. 630c8df bpo-38858: Small integer per interpreter (GH-17315) by Victor Stinner · 4 years, 10 months ago
  8. cb8b946 bpo-38629: implement __floor__ and __ceil__ for float type (GH-16985) by Batuhan Taşkaya · 4 years, 10 months ago
  9. 1f9f69d bpo-27961: Replace PY_LLONG_MAX, PY_LLONG_MIN and PY_ULLONG_MAX with standard macros (GH-15385) by Sergey Fedoseev · 4 years, 10 months ago
  10. 016b028 Fix compiler warning in Objects/unicodeobject.c (GH-17440) by Pablo Galindo · 4 years, 10 months ago
  11. c7c01ab bpo-38922: Raise code.__new__ audit event when code object replace() is called (GH-17394) by Steve Dower · 4 years, 11 months ago
  12. 036fe85 bpo-27145: small_ints[x] could be returned in long_add and long_sub (GH-15716) by HongWeipeng · 4 years, 11 months ago
  13. d68b592 bpo-38896: Remove PyUnicode_ClearFreeList() function (GH-17354) by Victor Stinner · 4 years, 11 months ago
  14. 3d48334 bpo-38858: Call _PyUnicode_Fini() in Py_EndInterpreter() (GH-17330) by Victor Stinner · 4 years, 11 months ago
  15. fee5526 Produce cleaner bytecode for 'with' and 'async with' by generating separate code for normal and exceptional paths. (#6641) by Mark Shannon · 4 years, 11 months ago
  16. 5dcc06f bpo-38858: Allocate small integers on the heap (GH-17301) by Victor Stinner · 4 years, 11 months ago
  17. 4dedd0f bpo-37340: Remove PyMethod_ClearFreeList() and PyCFunction_ClearFreeList() (GH-17284) by Victor Stinner · 5 years ago
  18. 7247407 bpo-36854: Move _PyRuntimeState.gc to PyInterpreterState (GH-17287) by Victor Stinner · 5 years ago
  19. be143ec bpo-38835: Don't use PyFPE_START_PROTECT and PyFPE_END_PROTECT (GH-17231) by Victor Stinner · 5 years ago
  20. 8e0de2a bpo-35409: Ignore GeneratorExit in async_gen_athrow_throw (GH-14755) by Vincent Michel · 5 years ago
  21. 04394df bpo-38631: Avoid Py_FatalError() in float.__getformat__() (GH-17232) by Victor Stinner · 5 years ago
  22. bd44a7e bpo-38650: Constify PyStructSequence_UnnamedField. (GH-17005) by Serhiy Storchaka · 5 years ago
  23. b5e170f bpo-38644: Add _PyEval_EvalCode() (GH-17183) by Victor Stinner · 5 years ago
  24. 4d231bc bpo-38644: Add _PyObject_Call() (GH-17089) by Victor Stinner · 5 years ago
  25. b9e6812 bpo-38644: Add _PyEval_EvalFrame() with tstate (GH-17131) by Victor Stinner · 5 years ago
  26. 7e43373 bpo-38644: Add _PyObject_VectorcallTstate() (GH-17052) by Victor Stinner · 5 years ago
  27. 6cbc84f bpo-38613: Optimize set operations of dict keys. (GH-16961) by Inada Naoki · 5 years ago
  28. d12d0e7 bpo-38733: PyErr_Occurred() caller must hold the GIL (GH-17080) by Victor Stinner · 5 years ago
  29. bf17d41 bpo-37645: add new function _PyObject_FunctionStr() (GH-14890) by Jeroen Demeyer · 5 years ago
  30. 1726909 bpo-38644: Pass tstate to _Py_CheckFunctionResult() (GH-17050) by Victor Stinner · 5 years ago
  31. be434dc bpo-38644: Pass tstate to Py_EnterRecursiveCall() (GH-16997) by Victor Stinner · 5 years ago
  32. 865c3b2 bpo-28029: Make "".replace("", s, n) returning s for any n != 0. (GH-16981) by Serhiy Storchaka · 5 years ago
  33. 2e3d873 bpo-38555: Fix an undefined behavior. (GH-16883) by Serhiy Storchaka · 5 years ago
  34. 24dc2f8 bpo-38525: Fix a segmentation fault when using reverse iterators of empty dict (GH-16846) by Dong-hee Na · 5 years ago
  35. b16e382 bpo-38202: Fix a crash in dict_view & non-itearble. (GH-16241) by Zackery Spytz · 5 years ago
  36. c39d1dd Fix strict-aliasing rules errors on gcc 4.8.5. (GH-16714) by Dong-hee Na · 5 years ago
  37. 09895c2 bpo-38409: Fix grammar in str.strip() docstring (GH-16682) by Zachary Ware · 5 years ago
  38. 10cd00a bpo-38395: Fix ownership in weakref.proxy methods (GH-16632) by Pablo Galindo · 5 years ago
  39. d7c3873 bpo-33714: Output an exception raised in module's m_clear(). (GH-16592) by Serhiy Storchaka · 5 years ago
  40. 36e33c3 bpo-38400 Don't check for NULL linked list pointers in _PyObject_IsFreed (GH-16630) by Pablo Galindo · 5 years ago
  41. 7775349 bpo-36389: Add newline to _PyObject_AssertFailed() (GH-16629) by Victor Stinner · 5 years ago
  42. 60ec6ef bpo-36389: Fix _PyBytesWriter in release mode (GH-16624) by Victor Stinner · 5 years ago
  43. 6876257 bpo-36389: _PyObject_CheckConsistency() available in release mode (GH-16612) by Victor Stinner · 5 years ago
  44. ed8efd8 Fix a compile warning in dictobject.c (GH-16610) by Hai Shi · 5 years ago
  45. 24ddd9c bpo-38383: Fix possible integer overflow in startswith() of bytes and bytearray. (GH-16603) by Hai Shi · 5 years ago
  46. c38e725 bpo-38210: Fix intersection operation with dict view and iterator. (GH-16602) by Dong-hee Na · 5 years ago
  47. 61691d8 bpo-38353: Cleanup includes in the internal C API (GH-16548) by Victor Stinner · 5 years ago
  48. 6314abc bpo-37802: Fix a compiler warning in longobject.c (GH-16517) by Victor Stinner · 5 years ago
  49. fc4a044 bpo-30773: Fix ag_running; prohibit running athrow/asend/aclose in parallel (#7468) by Yury Selivanov · 5 years ago
  50. c816503 bpo-38115: Deal with invalid bytecode offsets in lnotab (GH-16079) by T. Wouters · 5 years ago
  51. 543a395 bpo-38005: Remove support of string argument in InterpreterID(). (GH-16227) by Serhiy Storchaka · 5 years ago
  52. f163aea bpo-38219: Optimize dict creating and updating by a dict. (GH-16268) by Serhiy Storchaka · 5 years ago
  53. fcdb027 bpo-38236: Dump path config at first import error (GH-16300) by Victor Stinner · 5 years ago
  54. 3368f3c bpo-38140: Make dict and weakref offsets opaque for C heap types (#16076) by Eddie Elizondo · 5 years ago
  55. 42acb7b bpo-35696: Simplify long_compare() (GH-16146) by HongWeipeng · 5 years ago
  56. b39afb7 bpo-38070: Enhance _PyObject_Dump() (GH-16243) by Victor Stinner · 5 years ago
  57. c275312 bpo-38013: make async_generator_athrow object tolerant to throwing exceptions (GH-16070) by Andrew Svetlov · 5 years ago
  58. 279f446 bpo-37206: Unrepresentable default values no longer represented as None. (GH-13933) by Serhiy Storchaka · 5 years ago
  59. bf16991 bpo-38005: Fixed comparing and creating of InterpreterID and ChannelID. (GH-15652) by Serhiy Storchaka · 5 years ago
  60. 3a4f667 Cut disused recode_encoding logic in _PyBytes_DecodeEscape. (GH-16013) by Greg Price · 5 years ago
  61. 4210ad5 bpo-38096: Complete the "structseq" and "named tuple" cleanup (GH-16010) by Raymond Hettinger · 5 years ago
  62. c6734ee bpo-37802: Slightly improve perfomance of PyLong_FromUnsigned*() (GH-15192) by Sergey Fedoseev · 5 years ago
  63. 4a12a17 bpo-34331: Fix incorrectly pluralized abstract class error message. (GH-8670) by Daniel Andrade · 5 years ago
  64. 7117074 bpo-38096: Clean up the "struct sequence" / "named tuple" docs (GH-15895) by Raymond Hettinger · 5 years ago
  65. 60bba83 Doc: Fix typo in fastsearch comments (GH-14608) by Valentin Haenel · 5 years ago
  66. 7a6873c bpo-37151: remove special case for PyCFunction from PyObject_Call (GH-14684) by Jeroen Demeyer · 5 years ago
  67. ff023ed bpo-37879: Suppress subtype_dealloc decref when base type is a C heap type (GH-15323) by Eddie Elizondo · 5 years ago
  68. afdeb18 Remove unneeded assignment in PyBytes_Concat() (GH-15274) by Sergey Fedoseev · 5 years ago
  69. 2ec7010 bpo-37752: Delete redundant Py_CHARMASK in normalizestring() (GH-15095) by Jordon Xu · 5 years ago
  70. 57ea335 bpo-37619: update_one_slot() should not ignore wrapper descriptors for wrong type (GH-14836) by Jeroen Demeyer · 5 years ago
  71. 359143c Fix typo in dict object comment (#15814) by dalgarno · 5 years ago
  72. 5b00dd8 Expand comment explaining update_one_slot (GH-14810) by Jeroen Demeyer · 5 years ago
  73. 0711642 Cut tricky `goto` that isn't needed, in _PyBytes_DecodeEscape. (GH-15825) by Greg Price · 5 years ago
  74. 755d4ef Correct overflow check in PyTuple_New() (GH-14838) by Sergey Fedoseev · 5 years ago
  75. 92709a2 bpo-37840: Fix handling of negative indices in bytearray_getitem() (GH-15250) by Sergey Fedoseev · 5 years ago
  76. 3c87a66 bpo-36946:Fix possible signed integer overflow when handling slices. (GH-15639) by HongWeipeng · 5 years ago
  77. 74b662c bpo-15088 : Remove PyGen_NeedsFinalizing() (GH-15702) by Joannah Nanjekye · 5 years ago
  78. 6b51998 replace inline function `is_small_int` with a macro version (GH-15710) by animalize · 5 years ago
  79. 60bd1f8 bpo-36030: Fix a possible segfault in PyTuple_New() (GH-15670) by Zackery Spytz · 5 years ago
  80. 1f21eaa bpo-15999: Clean up of handling boolean arguments. (GH-15610) by Serhiy Storchaka · 5 years ago
  81. 41c57b3 bpo-37994: Fix silencing all errors if an attribute lookup fails. (GH-15630) by Serhiy Storchaka · 5 years ago
  82. 39d87b5 Fix typos mostly in comments, docs and test names (GH-15209) by Min ho Kim · 5 years ago
  83. 88ea166 bpo-8425: Fast path for set inplace difference when the second set is large (GH-15590) by Raymond Hettinger · 5 years ago
  84. 4901fe2 bpo-37034: Display argument name on errors with keyword arguments with Argument Clinic. (GH-13593) by Rémi Lapeyre · 5 years ago
  85. 0138c4c Fix unused variable and signed/unsigned warnings (GH-15537) by Raymond Hettinger · 5 years ago
  86. bed4817 Make PyXXX_Fini() functions private (GH-15531) by Victor Stinner · 5 years ago
  87. 998cf1f bpo-27575: port set intersection logic into dictview intersection (GH-7696) by Forest Gregg · 5 years ago
  88. 5dbe0f5 bpo-37757: Disallow PEP 572 cases that expose implementation details (GH-15131) by Nick Coghlan · 5 years ago
  89. 805f8f9 bpo-19072: Make @classmethod support chained decorators (GH-8405) by Berker Peksag · 5 years ago
  90. 5e63ab0 bpo-37812: Convert CHECK_SMALL_INT macro to a function so the return is explicit. (GH-15216) by Greg Price · 5 years ago
  91. ef61c52 bpo-37830: Fix compilation of break and continue in finally. (GH-15320) by Serhiy Storchaka · 5 years ago
  92. 7ebdda0 bpo-36311: Fixes decoding multibyte characters around chunk boundaries and improves decoding performance (GH-15083) by Steve Dower · 5 years ago
  93. d33e46d abstract.c should not be executable. (GH-15348) by Benjamin Peterson · 5 years ago
  94. 9e66aba bpo-15913: Implement PyBuffer_SizeFromFormat() (GH-13873) by Joannah Nanjekye · 5 years ago
  95. 18f8dcf bpo-37732: Fix GCC warning in _PyObject_Malloc() (GH-15333) by Victor Stinner · 5 years ago
  96. 0567786 bpo-37540: vectorcall: keyword names must be strings (GH-14682) by Jeroen Demeyer · 5 years ago
  97. 37806f4 bpo-37207: enable vectorcall for type.__call__ (GH-14588) by Jeroen Demeyer · 5 years ago
  98. 4fa10dd bpo-36030: Improve performance of some tuple operations (GH-12052) by Sergey Fedoseev · 5 years ago
  99. 7e479c8 bpo-37681: no_sanitize_thread support from GCC 5.1 (GH-15096) by Hai Shi · 5 years ago
  100. 43d564c bpo-37337: Fix a GCC 9 warning in Objects/descrobject.c (GH-14814) by Zackery Spytz · 5 years ago