1. df8d2cd bpo-35911: add cell constructor (GH-11771) by Pierre Glaser · 5 years ago
  2. d08ea70 bpo-35845: Add order={'C', 'F', 'A'} parameter to memoryview.tobytes(). (#11730) by Stefan Krah · 5 years ago
  3. 8f59ee0 bpo-35224: PEP 572 Implementation (#10497) by Emily Morehouse · 6 years ago
  4. ab67281 bpo-35713: Reorganize sys module initialization (GH-11658) by Victor Stinner · 6 years ago
  5. 6d43f6f bpo-35713: Split _Py_InitializeCore into subfunctions (GH-11650) by Victor Stinner · 6 years ago
  6. bf4ac2d bpo-35713: Rework Python initialization (GH-11647) by Victor Stinner · 6 years ago
  7. d586ccb bpo-35552: Fix reading past the end in PyUnicode_FromFormat() and PyBytes_FromFormat(). (GH-11276) by Serhiy Storchaka · 6 years ago
  8. 44cc482 bpo-33817: Fix _PyBytes_Resize() for empty bytes object. (GH-11516) by Serhiy Storchaka · 6 years ago
  9. 2a39d25 bpo-35582: Argument Clinic: Optimize the "all boring objects" case. (GH-11520) by Serhiy Storchaka · 6 years ago
  10. 4fa9591 bpo-35582: Argument Clinic: inline parsing code for positional parameters. (GH-11313) by Serhiy Storchaka · 6 years ago
  11. 3f7983a bpo-35560: Remove assertion from format(float, "n") (GH-11288) by Xtreak · 6 years ago
  12. a1d1425 bpo-35636: Remove redundant check in unicode_hash(). (GH-11402) by animalize · 6 years ago
  13. f8b5344 closes bpo-35623: Fix integer overflow when sorting large lists (GH-11380) by sth · 6 years ago
  14. 0e5f771 bpo-33234: Simplify list_preallocate_exact() (GH-11220) by Sergey Fedoseev · 6 years ago
  15. 32d96a2 bpo-23867: Argument Clinic: inline parsing code for a single positional parameter. (GH-9689) by Serhiy Storchaka · 6 years ago
  16. e7eed78 Clarify the behavior of the staticmethod builtin (GH-4362) by Jess Shapiro · 6 years ago
  17. 6326278 bpo-34193: Fix pluralization in getargs.c and test cases. (GH-8438) by Xtreak · 6 years ago
  18. 842acaa bpo-35504: Fix segfaults and SystemErrors when deleting certain attrs. (GH-11175) by Zackery Spytz · 6 years ago
  19. e2af34f bpo-35504: Fix a SystemError when delete the characters_written attribute of an OSError. (GH-11172) by Serhiy Storchaka · 6 years ago
  20. 7211d30 Remove an unused variable after bpo-35444. (GH-11117) by Serhiy Storchaka · 6 years ago
  21. 8905fcc bpo-35454: Fix miscellaneous minor issues in error handling. (#11077) by Serhiy Storchaka · 6 years ago
  22. bb86bf4 bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11047) by Serhiy Storchaka · 6 years ago
  23. 4c49da0 bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-11015) by Zackery Spytz · 6 years ago
  24. eeb719e bpo-35365: Use a wchar_t* buffer in the code page decoder. (GH-10837) by Serhiy Storchaka · 6 years ago
  25. 4013c17 bpo-35372: Fix the code page decoder for input > 2 GiB. (GH-10848) by Serhiy Storchaka · 6 years ago
  26. 9890520 Fix compiler warning in structseq_repr() (GH-10841) by Victor Stinner · 6 years ago
  27. bde9d6b bpo-34523, bpo-35322: Fix unicode_encode_locale() (GH-10759) by Victor Stinner · 6 years ago
  28. 1c60715 bpo-33012: Fix more invalid function cast warnings with gcc 8. (GH-10751) by Serhiy Storchaka · 6 years ago
  29. d4f9cf5 bpo-33029: Fix signatures of getter and setter functions. (GH-10746) by Serhiy Storchaka · 6 years ago
  30. 163403a bpo-33954: Fix compiler warning in _PyUnicode_FastFill() (GH-10737) by Victor Stinner · 6 years ago
  31. 62be742 bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749) by Serhiy Storchaka · 6 years ago
  32. 8152402 bpo-33012: Fix signatures of METH_NOARGS funstions. (GH-10736) by Serhiy Storchaka · 6 years ago
  33. 4a934d4 bpo-33012: Fix invalid function cast warnings with gcc 8 in Argument Clinic. (GH-6748) by Serhiy Storchaka · 6 years ago
  34. 59423e3 bpo-33954: Fix _PyUnicode_InsertThousandsGrouping() (GH-10623) by Victor Stinner · 6 years ago
  35. ec13b93 bpo-35081: Add Include/internal/pycore_tupleobject.h (GH-10705) by Victor Stinner · 6 years ago
  36. b509d52 bpo-35059: PyObject_INIT() casts to PyObject* (GH-10674) by Victor Stinner · 6 years ago
  37. 2cf5d32 bpo-9263: Fix _PyObject_Dump() for freed object (#10661) by Victor Stinner · 6 years ago
  38. a42de74 bpo-35059: Cast void* to PyObject* (GH-10650) by Victor Stinner · 6 years ago
  39. b37672d bpo-35059: Cleanup usage of Python macros (GH-10648) by Victor Stinner · 6 years ago
  40. f1d002c bpo-35059: Enhance _PyObject_AssertFailed() (GH-10642) by Victor Stinner · 6 years ago
  41. bcda8f1 bpo-35081: Add Include/internal/pycore_object.h (GH-10640) by Victor Stinner · 6 years ago
  42. 062a57b bpo-35269: Fix a possible segfault involving a newly-created coroutine (GH-10585) by Zackery Spytz · 6 years ago
  43. bfb855b bpo-34784: Implement correct cleanup in PyStructSequence new implementation (GH-10536) by Pablo Galindo · 6 years ago
  44. a757649 bpo-35230: dict: Remove some macros (GH-10513) by INADA Naoki · 6 years ago
  45. 746b2d3 bpo-35214: Fix OOB memory access in unicode escape parser (GH-10506) by Gregory P. Smith · 6 years ago
  46. 474eedf bpo-34784: Fix PyStructSequence_NewType with heap-allocated StructSequence (GH-9665) by Eddie Elizondo · 6 years ago
  47. 3015fb8 bpo-35214: Add _Py_ prefix to MEMORY_SANITIZER def. (GH-10503) by Gregory P. Smith · 6 years ago
  48. e6c77d8 Disable getc_unlocked() with MemorySanitizer. (GH-10499) by Gregory P. Smith · 6 years ago
  49. 621cebe bpo-35081: Rename internal headers (GH-10275) by Victor Stinner · 6 years ago
  50. fd3a91c closes bpo-35204: Disable thread and memory sanitizers for address_in_range(). (GH-10442) by Alexey Izbyshev · 6 years ago
  51. f9ec1b9 Neaten the code without any algorithmic change. (GH-10466) by Raymond Hettinger · 6 years ago
  52. d17a693 bpo-35199: Add an internal _PyTuple_ITEMS() macro (GH-10434) by Victor Stinner · 6 years ago
  53. cf5863f Optimize set.pop() to advance a pointer instead of indexing. (GH-10429) by Raymond Hettinger · 6 years ago
  54. 9fc57a3 bpo-35081: Add pycore_fileutils.h (GH-10371) by Victor Stinner · 6 years ago
  55. 6531bf6 bpo-33462: Add __reversed__ to dict and dict views (GH-6827) by Rémi Lapeyre · 6 years ago
  56. e281f7d bpo-35081: Move accu.h to Include/internal/pycore_accu.h (GH-10271) by Victor Stinner · 6 years ago
  57. 50b4857 bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266) by Victor Stinner · 6 years ago
  58. 27e2d1f bpo-35081: Add pycore_ prefix to internal header files (GH-10263) by Victor Stinner · 6 years ago
  59. 2be00d9 bpo-35081: Move Py_BUILD_CORE code to internal/mem.h (GH-10249) by Victor Stinner · 6 years ago
  60. c9a6168 Fix a possible crash in range.__reversed__(). (GH-10252) by Zackery Spytz · 6 years ago
  61. 0353b4e bpo-33138: Change standard error message for non-pickleable and non-copyable types. (GH-6239) by Serhiy Storchaka · 6 years ago
  62. 9204fb8 bpo-35081: Cleanup pystate.c and pystate.h (GH-10240) by Victor Stinner · 6 years ago
  63. 3c09dca bpo-35059: Convert _Py_Dealloc() to static inline function (GH-10223) by Victor Stinner · 6 years ago
  64. 3e429dc bpo-33237: Improve AttributeError message for partially initialized module. (GH-6398) by Serhiy Storchaka · 6 years ago
  65. 372d705 bpo-33234 Improve list() pre-sizing for inputs with known lengths (GH-9846) by Pablo Galindo · 6 years ago
  66. 49c75a8 bpo-35064 prefix smelly symbols that appear with COUNT_ALLOCS with _Py_ (GH-10152) by Pablo Galindo · 6 years ago
  67. aeb1be5 bpo-34751: improved hash function for tuples (GH-9471) by jdemeyer · 6 years ago
  68. 50fe3f8 bpo-9263: _PyXXX_CheckConsistency() use _PyObject_ASSERT() (GH-10108) by Victor Stinner · 6 years ago
  69. 0862505 bpo-9263: Use _PyObject_ASSERT() in typeobject.c (GH-10111) by Victor Stinner · 6 years ago
  70. 2470204 bpo-9263: Use _PyObject_ASSERT() in object.c (GH-10110) by Victor Stinner · 6 years ago
  71. b4435e2 bpo-35059: Convert PyObject_INIT() to function (GH-10077) by Victor Stinner · 6 years ago
  72. 3ec9af7 bpo-9263: _Py_NegativeRefcount() use _PyObject_AssertFailed() (GH-10109) by Victor Stinner · 6 years ago
  73. 626bff8 bpo-9263: Dump Python object on GC assertion failure (GH-10062) by Victor Stinner · 6 years ago
  74. 18618e65 bpo-35059: Add Py_STATIC_INLINE() macro (GH-10093) by Victor Stinner · 6 years ago
  75. 9e00e80 bpo-35053: Enhance tracemalloc to trace free lists (GH-10063) by Victor Stinner · 6 years ago
  76. c46db92 bpo-30863: Rewrite PyUnicode_AsWideChar() and PyUnicode_AsWideCharString(). (GH-2599) by Serhiy Storchaka · 6 years ago
  77. 82af0b6 bpo-9263: _PyObject_Dump() detects freed memory (GH-10061) by Victor Stinner · 6 years ago
  78. 5a95ba2 Fix issue 34551 - remove redundant store (#9009) by Eric Lippert · 6 years ago
  79. 2c2044e bpo-34984: Improve error messages for bytes and bytearray constructors. (GH-9874) by Serhiy Storchaka · 6 years ago
  80. 914f9a0 bpo-34973: Fix crash in bytes constructor. (GH-9841) by Serhiy Storchaka · 6 years ago
  81. a5259fb bpo-34574: Prevent OrderedDict iterators from exhaustion during pickling. (GH-9051) by Sergey Fedoseev · 6 years ago
  82. 6395844 bpo-34573: Simplify __reduce__() of set and dict iterators. (GH-9050) by Sergey Fedoseev · 6 years ago
  83. 6f17e51 bpo-33712: OrderedDict only creates od_fast_nodes cache if needed (GH-7349) by Serhiy Storchaka · 6 years ago
  84. b2e2025 bpo-33073: Rework int.as_integer_ratio() implementation (GH-9303) by Serhiy Storchaka · 6 years ago
  85. e890421 bpo-34974: Do not replace unexpected errors in bytes() and bytearray(). (GH-9852) by Serhiy Storchaka · 6 years ago
  86. a4b48f1 bpo-34940: Fix the error handling in _check_for_legacy_statements(). (GH-9764) by Zackery Spytz · 6 years ago
  87. f1aa8ae Micro-optimize list index range checks (GH-9784) by Raymond Hettinger · 6 years ago
  88. fc8205c Add missing closing quote and trailing period in str.isidentifier() docstring (GH-9756) by Emanuele Gaifas · 6 years ago
  89. ffc5a14 bpo-33014: Clarify str.isidentifier docstring (GH-6088) by Sanyam Khurana · 6 years ago
  90. ae62f01 bpo-34910: Ensure that PyObject_Print() always returns -1 on error. (GH-9733) by Zackery Spytz · 6 years ago
  91. 7bb9cd0 bpo-34899: Fix a possible assertion failure due to int_from_bytes_impl() (GH-9705) by Zackery Spytz · 6 years ago
  92. 96c5932 bpo-34879: Fix a possible null pointer dereference in bytesobject.c (GH-9683) by Zackery Spytz · 6 years ago
  93. e972c13 bpo-30156: Remove property_descr_get() optimization (GH-9541) by Victor Stinner · 6 years ago
  94. 2aaf98c bpo-34320: Fix dict(o) didn't copy order of dict subclass (GH-8624) by INADA Naoki · 6 years ago
  95. 73820a6 Fix compiler warning with a type cast (GH-9300) by Raymond Hettinger · 6 years ago
  96. 00bc08e Fix-up parenthesis, organization, and NULL check (GH-9297) by Raymond Hettinger · 6 years ago
  97. 5ac7043 bpo-33073: Adding as_integer_ratio to ints. (GH-8750) by Lisa Roach · 6 years ago
  98. e502451 closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218) by Benjamin Peterson · 6 years ago
  99. 6c7d67c bpo-1621: Avoid signed integer overflow in set_table_resize(). (GH-9059) by Sergey Fedoseev · 6 years ago
  100. 998b806 Revert "bpo-34595: Add %T format to PyUnicode_FromFormatV() (GH-9080)" (GH-9187) by Victor Stinner · 6 years ago