1. 2ad9382 bpo-42431: Fix outdated bytes comments (GH-23458) by Serhiy Storchaka · 4 years, 8 months ago
  2. 32bd68c bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587) by Victor Stinner · 4 years, 8 months ago
  3. 00d7abd bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586) by Victor Stinner · 4 years, 8 months ago
  4. 07f2ade bpo-40998: Address compiler warnings found by ubsan (GH-20929) by Christian Heimes · 4 years, 9 months ago
  5. 38811d6 Fix typo in unicodeobject.c (GH-23180) by Ikko Ashimine · 4 years, 9 months ago
  6. 920cb64 bpo-42157: unicodedata avoids references to UCD_Type (GH-22990) by Victor Stinner · 4 years, 9 months ago
  7. 47e1afd bpo-1635741: _PyUnicode_Name_CAPI moves to internal C API (GH-22713) by Victor Stinner · 4 years, 9 months ago
  8. a0c603c bpo-38252: Use 8-byte step to detect ASCII sequence in 64bit Windows build (GH-16334) by Ma Lin · 4 years, 10 months ago
  9. 3635388 bpo-42065: Fix incorrectly formatted _codecs.charmap_decode error message (GH-19940) by Max Bernstein · 4 years, 10 months ago
  10. e2ec0b2 bpo-41974: Remove complex.__float__, complex.__floordiv__, etc (GH-22593) by Serhiy Storchaka · 4 years, 10 months ago
  11. 9ece9cd bpo-41909: Enable previously disabled recursion checks. (GH-22536) by Serhiy Storchaka · 4 years, 10 months ago
  12. 583ee5a bpo-41692: Deprecate PyUnicode_InternImmortal() (GH-22486) by Victor Stinner · 4 years, 10 months ago
  13. 7f413a5 bpo-40521: Fix PyUnicode_InternInPlace() (GH-22376) by Victor Stinner · 4 years, 11 months ago
  14. bb083d3 bpo-1635741: Port _string module to multi-phase init (GH-22148) by Victor Stinner · 5 years ago
  15. 12f4334 bpo-41334: Convert constructors of str, bytes and bytearray to Argument Clinic (GH-21535) by Serhiy Storchaka · 5 years ago
  16. 4c8f09d bpo-36346: Make using the legacy Unicode C API optional (GH-21437) by Serhiy Storchaka · 5 years ago
  17. 8182cc2 bpo-39573: Use the Py_TYPE() macro (GH-21433) by Victor Stinner · 5 years ago
  18. b3dd5cd bpo-36346: Undeprecate private function _PyUnicode_AsUnicode(). (GH-21336) by Serhiy Storchaka · 5 years ago
  19. 3549ca3 bpo-1635741: Fix unicode_dealloc() for mortal interned string (GH-21270) by Victor Stinner · 5 years ago
  20. 666ecfb bpo-1635741: Release Unicode interned strings at exit (GH-21269) by Victor Stinner · 5 years ago
  21. 038dd0f bpo-36346: Raise DeprecationWarning when creating legacy Unicode (GH-20933) by Inada Naoki · 5 years ago
  22. 349f76c bpo-36346: Prepare for removing the legacy Unicode C API (AC only). (GH-21223) by Serhiy Storchaka · 5 years ago
  23. b333266 bpo-41123: Remove PyUnicode_AsUnicodeCopy (GH-21209) by Inada Naoki · 5 years ago
  24. e67f7db bpo-37999: Simplify the conversion code for %c, %d, %x, etc. (GH-20437) by Serhiy Storchaka · 5 years ago
  25. d9f2a13 bpo-41123: Remove PyUnicode_GetMax() (GH-21192) by Inada Naoki · 5 years ago
  26. 20a7902 bpo-41123: Remove Py_UNICODE_str* functions (GH-21164) by Inada Naoki · 5 years ago
  27. 91698d8 bpo-40521: Optimize PyBytes_FromStringAndSize(str, 0) (GH-21142) by Victor Stinner · 5 years ago
  28. 2f9ada9 bpo-40521: Make Unicode latin1 singletons per interpreter (GH-21101) by Victor Stinner · 5 years ago
  29. 90ed8a6 bpo-40521: Optimize PyUnicode_New(0, maxchar) (GH-21099) by Victor Stinner · 5 years ago
  30. f363d0a bpo-40521: Make empty Unicode string per interpreter (GH-21096) by Victor Stinner · 5 years ago
  31. 2c4928d bpo-36346: Add Py_DEPRECATED to deprecated unicode APIs (GH-20878) by Inada Naoki · 5 years ago
  32. 04fc4f2 bpo-40989: PyObject_INIT() becomes an alias to PyObject_Init() (GH-20901) by Victor Stinner · 5 years ago
  33. d36cf5f bpo-40943: Replace PY_FORMAT_SIZE_T with "z" (GH-20781) by Victor Stinner · 5 years ago
  34. c96a61e bpo-40881: Fix unicode_release_interned() (GH-20699) by Victor Stinner · 5 years ago
  35. 297257f bpo-39465: Cleanup _PyUnicode_FromId() code (GH-20595) by Victor Stinner · 5 years ago
  36. 5f4b229d bpo-40792: Make the result of PyNumber_Index() always having exact type int. (GH-20443) by Serhiy Storchaka · 5 years ago
  37. 3d17c04 bpo-40521: Add PyInterpreterState.unicode (GH-20081) by Victor Stinner · 5 years ago
  38. d6fb53f bpo-39465: Remove _PyUnicode_ClearStaticStrings() from C API (GH-20078) by Victor Stinner · 5 years ago
  39. 5650e76 bpo-40596: Fix str.isidentifier() for non-canonicalized strings containing non-BMP characters on Windows. (GH-20053) by Serhiy Storchaka · 5 years ago
  40. 74ea6b5 bpo-40593: Improve syntax errors for invalid characters in source code. (GH-20033) by Serhiy Storchaka · 5 years ago
  41. 607b102 bpo-40521: Disable Unicode caches in isolated subinterpreters (GH-19933) by Victor Stinner · 5 years ago
  42. a81849b bpo-39939: Add str.removeprefix and str.removesuffix (GH-18939) by sweeneyde · 5 years ago
  43. e5014be bpo-40268: Remove a few pycore_pystate.h includes (GH-19510) by Victor Stinner · 5 years ago
  44. 81a7be3 bpo-40268: Rename _PyInterpreterState_GET_UNSAFE() (GH-19509) by Victor Stinner · 5 years ago
  45. da7933e bpo-40268: Add _PyInterpreterState_GetConfig() (GH-19492) by Victor Stinner · 5 years ago
  46. 8f87eef bpo-39943: Add the const qualifier to pointers on non-mutable PyBytes data. (GH-19472) by Serhiy Storchaka · 5 years ago
  47. cd8295f bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data. (GH-19345) by Serhiy Storchaka · 5 years ago
  48. a15e260 bpo-40170: Add _PyIndex_Check() internal function (GH-19426) by Victor Stinner · 5 years ago
  49. d8acf0d bpo-37388: Don't check encoding/errors during finalization (GH-19409) by Victor Stinner · 5 years ago
  50. 17b4733 bpo-40130: _PyUnicode_AsKind() should not be exported. (GH-19265) by Serhiy Storchaka · 5 years ago
  51. 3a8c562 Revert "bpo-39087: Add _PyUnicode_GetUTF8Buffer()" (GH-18985) by Inada Naoki · 5 years ago
  52. c7ad974 bpo-39087: Add _PyUnicode_GetUTF8Buffer() (GH-17659) by Inada Naoki · 5 years ago
  53. dffe4c0 bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601) by Andy Lester · 5 years ago
  54. 02a4d57 bpo-39087: Optimize PyUnicode_AsUTF8AndSize() (GH-18327) by Inada Naoki · 5 years ago
  55. 933fc53f closes bpo-39684: Combine two if/thens and squash uninit var warning. (GH-18565) by Andy Lester · 5 years ago
  56. 3d235f5 bpo-39500: Fix compile warnings in unicodeobject.c (GH-18519) by Hai Shi · 5 years ago
  57. 45876a9 bpo-35081: Move bytes_methods.h to the internal C API (GH-18492) by Victor Stinner · 5 years ago
  58. 95905ce bpo-39605: Remove a cast that causes a warning. (GH-18473) by Benjamin Peterson · 5 years ago
  59. e6be9b5 closes bpo-39605: Fix some casts to not cast away const. (GH-18453) by Andy Lester · 5 years ago
  60. ffd9753 bpo-39245: Switch to public API for Vectorcall (GH-18460) by Petr Viktorin · 5 years ago
  61. f3e7ea5 bpo-39500: Document PyUnicode_IsIdentifier() function (GH-18397) by Victor Stinner · 5 years ago
  62. 58ac700 bpo-39573: Use Py_TYPE() macro in Objects directory (GH-18392) by Victor Stinner · 5 years ago
  63. c86a112 bpo-39573: Add Py_SET_REFCNT() function (GH-18389) by Victor Stinner · 5 years ago
  64. bf305cc Add PyInterpreterState.fs_codec.utf8 (GH-18367) by Victor Stinner · 5 years ago
  65. 49932fe bpo-39542: Simplify _Py_NewReference() (GH-18332) by Victor Stinner · 6 years ago
  66. ec3c99c bpo-38631: Avoid Py_FatalError() in unicodeobject.c (GH-18281) by Victor Stinner · 6 years ago
  67. 016b028 Fix compiler warning in Objects/unicodeobject.c (GH-17440) by Pablo Galindo · 6 years ago
  68. d68b592 bpo-38896: Remove PyUnicode_ClearFreeList() function (GH-17354) by Victor Stinner · 6 years ago
  69. 3d48334 bpo-38858: Call _PyUnicode_Fini() in Py_EndInterpreter() (GH-17330) by Victor Stinner · 6 years ago
  70. 865c3b2 bpo-28029: Make "".replace("", s, n) returning s for any n != 0. (GH-16981) by Serhiy Storchaka · 6 years ago
  71. 09895c2 bpo-38409: Fix grammar in str.strip() docstring (GH-16682) by Zachary Ware · 6 years ago
  72. 6876257 bpo-36389: _PyObject_CheckConsistency() available in release mode (GH-16612) by Victor Stinner · 6 years ago
  73. 61691d8 bpo-38353: Cleanup includes in the internal C API (GH-16548) by Victor Stinner · 6 years ago
  74. fcdb027 bpo-38236: Dump path config at first import error (GH-16300) by Victor Stinner · 6 years ago
  75. 279f446 bpo-37206: Unrepresentable default values no longer represented as None. (GH-13933) by Serhiy Storchaka · 6 years ago
  76. 0138c4c Fix unused variable and signed/unsigned warnings (GH-15537) by Raymond Hettinger · 6 years ago
  77. 7ebdda0 bpo-36311: Fixes decoding multibyte characters around chunk boundaries and improves decoding performance (GH-15083) by Steve Dower · 6 years ago
  78. 196a530 bpo-37483: add _PyObject_CallOneArg() function (#14558) by Jeroen Demeyer · 6 years ago
  79. ed076ed bpo-37388: Add PyUnicode_Decode(str, 0) fast-path (GH-14385) by Victor Stinner · 6 years ago
  80. 22eb689 bpo-37388: Development mode check encoding and errors (GH-14341) by Victor Stinner · 6 years ago
  81. 894263b bpo-24214: Fixed the UTF-8 and UTF-16 incremental decoders. (GH-14304) by Serhiy Storchaka · 6 years ago
  82. 770847a bpo-37348: optimize decoding ASCII string (GH-14283) by Inada Naoki · 6 years ago
  83. b45d259 bpo-36710: Use tstate in pylifecycle.c (GH-14249) by Victor Stinner · 6 years ago
  84. 530f506 bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464) by Jeroen Demeyer · 6 years ago
  85. 7d40869 remove unnecessary tp_dealloc (GH-13647) by Inada Naoki · 6 years ago
  86. 331a6a5 bpo-36763: Implement the PEP 587 (GH-13592) by Victor Stinner · 6 years ago
  87. 14514d9 bpo-36946: Fix possible signed integer overflow when handling slices. (GH-13375) by Zackery Spytz · 6 years ago
  88. 1a2252e bpo-36594: Fix incorrect use of %p in format strings (GH-12769) by Zackery Spytz · 6 years ago
  89. 709d23d bpo-36775: _PyCoreConfig only uses wchar_t* (GH-13062) by Victor Stinner · 6 years ago
  90. 43fc3bb bpo-36775: Add _PyUnicode_InitEncodings() (GH-13057) by Victor Stinner · 6 years ago
  91. e251095 bpo-36775: Add _Py_FORCE_UTF8_FS_ENCODING macro (GH-13056) by Victor Stinner · 6 years ago
  92. 0fc91ee bpo-36389: Add _PyObject_CheckConsistency() function (GH-12803) by Victor Stinner · 6 years ago
  93. b015fc8 bpo-36549: str.capitalize now titlecases the first character instead of uppercasing it (GH-12804) by Kingsley M · 6 years ago
  94. 7a465cb bpo-24214: Fixed the UTF-8 incremental decoder. (GH-12603) by Serhiy Storchaka · 6 years ago
  95. c1e2c28 bpo-36312: Fix decoders for some code pages. (GH-12369) by Serhiy Storchaka · 6 years ago
  96. fecc4f2 bpo-36356: Release Unicode interned strings on Valgrind (#12431) by Victor Stinner · 6 years ago
  97. 5f9cf23 bpo-36301: Error if decoding pybuilddir.txt fails (GH-12422) by Victor Stinner · 6 years ago
  98. 6a16b18 bpo-36297: remove "unicode_internal" codec (GH-12342) by Inada Naoki · 6 years ago
  99. 6d43f6f bpo-35713: Split _Py_InitializeCore into subfunctions (GH-11650) by Victor Stinner · 7 years ago
  100. bf4ac2d bpo-35713: Rework Python initialization (GH-11647) by Victor Stinner · 7 years ago