- 413f013 bpo-39904: Move handling of one-argument call of type() from type.__new__() to type.__call__(). (GH-18852) by Serhiy Storchaka · 4 years, 8 months ago
- 4663f66 bpo-36144: Update MappingProxyType with PEP 584's operators (#18814) by Brandt Bucher · 4 years, 8 months ago
- 9e5d30c bpo-39882: Py_FatalError() logs the function name (GH-18819) by Victor Stinner · 4 years, 8 months ago
- 5572870 bpo-39573: Use Py_IS_TYPE() macro to check for types (GH-18809) by Andy Lester · 4 years, 8 months ago
- 9a73705 bpo-39873: Cleanup _PyObject_CheckConsistency() (GH-18807) by Victor Stinner · 4 years, 8 months ago
- 1fb5a9f bpo-39873: PyObject_Init() uses PyObject_INIT() (GH-18804) by Victor Stinner · 4 years, 8 months ago
- dffe4c0 bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601) by Andy Lester · 4 years, 9 months ago
- 469325c bpo-35712: Make using NotImplemented in a boolean context issue a deprecation warning (GH-13195) by MojoVampire · 4 years, 9 months ago
- 0c2b509 bpo-39778: Don't traverse weak-reference lists OrderedDict's tp_traverse and tp_clear (GH-18749) by Pablo Galindo · 4 years, 9 months ago
- 02a4d57 bpo-39087: Optimize PyUnicode_AsUTF8AndSize() (GH-18327) by Inada Naoki · 4 years, 9 months ago
- be7ead6 bpo-39737: Remove code repitition in list_richcompare (GH-18638) by sweeneyde · 4 years, 9 months ago
- eb8ac57 bpo-36144: Dictionary Union (PEP 584) (#12088) by Brandt Bucher · 4 years, 9 months ago
- ee3bac4 Give proper credits for the memoryview implementation. (#18626) by Stefan Krah · 4 years, 9 months ago
- 1c56f8f bpo-39382: Avoid dangling object use in abstract_issubclass() (GH-18530) by Yonatan Goldschmidt · 4 years, 9 months ago
- 933fc53f closes bpo-39684: Combine two if/thens and squash uninit var warning. (GH-18565) by Andy Lester · 4 years, 9 months ago
- 6e35da9 bpo-37207: Use vectorcall for range() (GH-18464) by Petr Viktorin · 4 years, 9 months ago
- 24bba8c bpo-36347: stop using RESTRICTED constants (GH-12684) by Jeroen Demeyer · 4 years, 9 months ago
- 3d235f5 bpo-39500: Fix compile warnings in unicodeobject.c (GH-18519) by Hai Shi · 4 years, 9 months ago
- 1b55b65 bpo-39573: Clean up modules and headers to use Py_IS_TYPE() function (GH-18521) by Dong-hee Na · 4 years, 9 months ago
- 9aeb0ef bpo-39573: Update clinic to use Py_IS_TYPE() function (GH-18507) by Dong-hee Na · 4 years, 9 months ago
- 7386a70 closes bpo-39630: Update pointers to string literals to be const char *. (GH-18510) by Andy Lester · 4 years, 9 months ago
- d905df7 bpo-39573: Add Py_IS_TYPE() function (GH-18488) by Dong-hee Na · 4 years, 9 months ago
- 925dc7f bpo-39606: allow closing async generators that are already closed (GH-18475) by Nathaniel J. Smith · 4 years, 9 months ago
- e9e7d28 bpo-35081: Move dtoa.h header to the internal C API (GH-18489) by Victor Stinner · 4 years, 9 months ago
- 45876a9 bpo-35081: Move bytes_methods.h to the internal C API (GH-18492) by Victor Stinner · 4 years, 9 months ago
- 95905ce bpo-39605: Remove a cast that causes a warning. (GH-18473) by Benjamin Peterson · 4 years, 9 months ago
- e6be9b5 closes bpo-39605: Fix some casts to not cast away const. (GH-18453) by Andy Lester · 4 years, 9 months ago
- ffd9753 bpo-39245: Switch to public API for Vectorcall (GH-18460) by Petr Viktorin · 4 years, 9 months ago
- f3e7ea5 bpo-39500: Document PyUnicode_IsIdentifier() function (GH-18397) by Victor Stinner · 4 years, 9 months ago
- 60ac6ed bpo-39573: Use Py_SET_SIZE() function (GH-18402) by Victor Stinner · 4 years, 9 months ago
- b10dc3e bpo-39573: Add Py_SET_SIZE() function (GH-18400) by Victor Stinner · 4 years, 9 months ago
- c65b320 bpo-39573: Use Py_TYPE() macro in object.c (GH-18398) by Victor Stinner · 4 years, 9 months ago
- d2ec81a bpo-39573: Add Py_SET_TYPE() function (GH-18394) by Victor Stinner · 4 years, 9 months ago
- 58ac700 bpo-39573: Use Py_TYPE() macro in Objects directory (GH-18392) by Victor Stinner · 4 years, 9 months ago
- 0d76d2b bpo-39573: Use Py_TYPE() in abstract.c (GH-18390) by Victor Stinner · 4 years, 9 months ago
- c86a112 bpo-39573: Add Py_SET_REFCNT() function (GH-18389) by Victor Stinner · 4 years, 9 months ago
- a93c51e bpo-39573: Use Py_REFCNT() macro (GH-18388) by Victor Stinner · 4 years, 9 months ago
- 58f4e1a bpo-39542: Declare _Py_AddToAllObjects() in pycore_object.h (GH-18368) by Victor Stinner · 4 years, 9 months ago
- bf305cc Add PyInterpreterState.fs_codec.utf8 (GH-18367) by Victor Stinner · 4 years, 9 months ago
- f58bd7c bpo-39542: Make PyObject_INIT() opaque in limited C API (GH-18363) by Victor Stinner · 4 years, 9 months ago
- f16433a bpo-39543: Remove unused _Py_Dealloc() macro (GH-18361) by Victor Stinner · 4 years, 9 months ago
- 40e547d bpo-39542: Make _Py_NewReference() opaque in C API (GH-18346) by Victor Stinner · 4 years, 9 months ago
- 850a4bd Restore PyObject_IsInstance() comment (GH-18345) by Victor Stinner · 4 years, 10 months ago
- 49932fe bpo-39542: Simplify _Py_NewReference() (GH-18332) by Victor Stinner · 4 years, 10 months ago
- 24e5ad4 Fixes in sorting descriptions (GH-18317) by Stefan Pochmann · 4 years, 10 months ago
- c6e5c11 bpo-39489: Remove COUNT_ALLOCS special build (GH-18259) by Victor Stinner · 4 years, 10 months ago
- 869c0c9 bpo-36051: Fix compiler warning. (GH-18325) by Inada Naoki · 4 years, 10 months ago
- be8147b Fix 5-space indentation and trailing whitespace (GH-18311) by Mark Dickinson · 4 years, 10 months ago
- 46874c2 bpo-39487: Merge duplicated _Py_IDENTIFIER identifiers in C code (GH-18254) by Hai Shi · 4 years, 10 months ago
- 8d49f7c bpo-39434: Improve float __floordiv__ performance and error message (GH-18147) by Dong-hee Na · 4 years, 10 months ago
- 2a4903f bpo-38631: Add _Py_NO_RETURN to functions calling Py_FatalError() (GH-18278) by Victor Stinner · 4 years, 10 months ago
- ec3c99c bpo-38631: Avoid Py_FatalError() in unicodeobject.c (GH-18281) by Victor Stinner · 4 years, 10 months ago
- 2bf127d bpo-38631: Replace tp_new_wrapper() fatal error with SystemError (GH-18262) by Victor Stinner · 4 years, 10 months ago
- 7a1f6c2 bpo-38631: Avoid Py_FatalError() in init_slotdefs() (GH-18263) by Victor Stinner · 4 years, 10 months ago
- 5eb8bff bpo-38631: Replace Py_FatalError() with _PyObject_ASSERT_FAILED_MSG() (GH-18258) by Victor Stinner · 4 years, 10 months ago
- 5428f48 Remove deadcode in _Py_inc_count() (GH-18257) by Victor Stinner · 4 years, 10 months ago
- d07d9f4 bpo-36051: Drop GIL during large bytes.join() (GH-17757) by Bruce Merry · 4 years, 10 months ago
- a278313 bpo-38631: Avoid Py_FatalError() in PyCode_New() (GH-18215) by Victor Stinner · 4 years, 10 months ago
- 47ee8a6 bpo-38631: Avoid Py_FatalError() in _memory_release() (GH-18214) by Victor Stinner · 4 years, 10 months ago
- a94c6b6 bpo-38631: Avoid Py_FatalError() in PyModule_Create2() (GH-18212) by Victor Stinner · 4 years, 10 months ago
- 9e1ed51 bpo-39453: Add testcase for bpo-39453 (GH-18202) by Dong-hee Na · 4 years, 10 months ago
- 4dbf2d8 bpo-39453: Make list.__contains__ hold strong references to avoid crashes (GH-18181) by Dong-hee Na · 4 years, 10 months ago
- 14d80d0 bpo-39425: Fix list.count performance regression (GH-18119) by Dong-hee Na · 4 years, 10 months ago
- 0d5eac8 closes bpo-39415: Remove unused codes from longobject.c complexobject.c floatobject.c. (GH-18105) by Dong-hee Na · 4 years, 10 months ago
- 629023c bpo-33387: Fix compiler warning in frame_block_unwind() (GH-18099) by Victor Stinner · 4 years, 10 months ago
- a96e06d bpo-39386: Prevent double awaiting of async iterator (GH-18081) by Andrew Svetlov · 4 years, 10 months ago
- cd7db76 bpo-39372: Clean header files of declared interfaces with no implementations (GH-18037) by Pablo Galindo · 4 years, 10 months ago
- c5b7900 bpo-31031: Unify duplicate bits_in_digit and bit_length (GH-2866) by Niklas Fiekas · 4 years, 10 months ago
- 4b66fa6 bpo-39200: Correct the error message for range() empty constructor (GH-17813) by Pablo Galindo · 4 years, 11 months ago
- 22424c0 Document CodeType.replace (GH-17776) by Anthony Sottile · 4 years, 11 months ago
- dfef986 bpo-38588: Optimize list comparison. (GH-17766) by Inada Naoki · 4 years, 11 months ago
- 2d5bf56 bpo-38588: Fix possible crashes in dict and list when calling PyObject_RichCompareBool (GH-17734) by Dong-hee Na · 4 years, 11 months ago
- d9e561d bpo-38610: Fix possible crashes in several list methods (GH-17022) by Zackery Spytz · 4 years, 11 months ago
- c0052f3 closes bpo-30364: Replace deprecated no_address_safety_analysis attribute. (GH-17702) by Batuhan Taşkaya · 4 years, 11 months ago
- 630c8df bpo-38858: Small integer per interpreter (GH-17315) by Victor Stinner · 5 years ago
- cb8b946 bpo-38629: implement __floor__ and __ceil__ for float type (GH-16985) by Batuhan Taşkaya · 5 years ago
- 1f9f69d bpo-27961: Replace PY_LLONG_MAX, PY_LLONG_MIN and PY_ULLONG_MAX with standard macros (GH-15385) by Sergey Fedoseev · 5 years ago
- 016b028 Fix compiler warning in Objects/unicodeobject.c (GH-17440) by Pablo Galindo · 5 years ago
- c7c01ab bpo-38922: Raise code.__new__ audit event when code object replace() is called (GH-17394) by Steve Dower · 5 years ago
- 036fe85 bpo-27145: small_ints[x] could be returned in long_add and long_sub (GH-15716) by HongWeipeng · 5 years ago
- d68b592 bpo-38896: Remove PyUnicode_ClearFreeList() function (GH-17354) by Victor Stinner · 5 years ago
- 3d48334 bpo-38858: Call _PyUnicode_Fini() in Py_EndInterpreter() (GH-17330) by Victor Stinner · 5 years ago
- fee5526 Produce cleaner bytecode for 'with' and 'async with' by generating separate code for normal and exceptional paths. (#6641) by Mark Shannon · 5 years ago
- 5dcc06f bpo-38858: Allocate small integers on the heap (GH-17301) by Victor Stinner · 5 years ago
- 4dedd0f bpo-37340: Remove PyMethod_ClearFreeList() and PyCFunction_ClearFreeList() (GH-17284) by Victor Stinner · 5 years ago
- 7247407 bpo-36854: Move _PyRuntimeState.gc to PyInterpreterState (GH-17287) by Victor Stinner · 5 years ago
- be143ec bpo-38835: Don't use PyFPE_START_PROTECT and PyFPE_END_PROTECT (GH-17231) by Victor Stinner · 5 years ago
- 8e0de2a bpo-35409: Ignore GeneratorExit in async_gen_athrow_throw (GH-14755) by Vincent Michel · 5 years ago
- 04394df bpo-38631: Avoid Py_FatalError() in float.__getformat__() (GH-17232) by Victor Stinner · 5 years ago
- bd44a7e bpo-38650: Constify PyStructSequence_UnnamedField. (GH-17005) by Serhiy Storchaka · 5 years ago
- b5e170f bpo-38644: Add _PyEval_EvalCode() (GH-17183) by Victor Stinner · 5 years ago
- 4d231bc bpo-38644: Add _PyObject_Call() (GH-17089) by Victor Stinner · 5 years ago
- b9e6812 bpo-38644: Add _PyEval_EvalFrame() with tstate (GH-17131) by Victor Stinner · 5 years ago
- 7e43373 bpo-38644: Add _PyObject_VectorcallTstate() (GH-17052) by Victor Stinner · 5 years ago
- 6cbc84f bpo-38613: Optimize set operations of dict keys. (GH-16961) by Inada Naoki · 5 years ago
- d12d0e7 bpo-38733: PyErr_Occurred() caller must hold the GIL (GH-17080) by Victor Stinner · 5 years ago
- bf17d41 bpo-37645: add new function _PyObject_FunctionStr() (GH-14890) by Jeroen Demeyer · 5 years ago
- 1726909 bpo-38644: Pass tstate to _Py_CheckFunctionResult() (GH-17050) by Victor Stinner · 5 years ago
- be434dc bpo-38644: Pass tstate to Py_EnterRecursiveCall() (GH-16997) by Victor Stinner · 5 years ago
- 865c3b2 bpo-28029: Make "".replace("", s, n) returning s for any n != 0. (GH-16981) by Serhiy Storchaka · 5 years ago