COMMITS
/ Objects/abstract.c June 14, 2022
S
gh-93741: Add private C API _PyImport_GetModuleAttrString() (GH-93742)
Serhiy Storchaka committed
May 4, 2022
V
Use static inline function Py_EnterRecursiveCall() (#91988)
Victor Stinner committed
May 2, 2022
S
gh-92114: Improve error message for types with __class_getitem__ = None (GH-92115)
Serhiy Storchaka committed
April 28, 2022
Y
gh-91603: Speed up isinstance/issubclass on union types (GH-91631)
Yurii Karabas committed
March 5, 2022
S
bpo-46927: Include the type's name in the error message for subscripting non-generic types (GH-31694)
Serhiy Storchaka committed
February 8, 2022
February 3, 2022
Z
bpo-44977: Deprecate delegation of int to __trunc__ (GH-31031)
Zackery Spytz committed
December 22, 2021
D
bpo-46140: take more Py_buffer arguments as const * (GH-30217)
David Hewitt committed
November 26, 2021
D
bpo-45760: Remove PyNumber_InMatrixMultiply (GH-29751)
Dong-hee Na committed
November 16, 2021
B
bpo-45636: Simplify BINARY_OP (GH-29565)
Brandt Bucher committed
October 22, 2021
D
bpo-30570: Use Py_EnterRecursiveCall() in issubclass() (GH-29048)
Dennis Sweeney committed
October 15, 2021
V
bpo-35134: Move classobject.h to Include/cpython/ (GH-28968)
Victor Stinner committed
October 12, 2021
V
bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)
Victor Stinner committed
October 11, 2021
V
bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)
Victor Stinner committed
September 17, 2021
September 7, 2021
Y
bpo-45123: PyAiter_Check and PyObject_GetAiter fix & rename. (GH-28194)
Yury Selivanov committed
July 29, 2021
I
bpo-41103: Resurrect the old buffer protocol. (GH-27437)
Inada Naoki committed
July 23, 2021
P
bpo-42747: Remove Py_TPFLAGS_HAVE_AM_SEND and make Py_TPFLAGS_HAVE_VERSION_TAG no-op (GH-27260)
Petr Viktorin committed
July 17, 2021
S
bpo-44654: Refactor and clean up the union type implementation (GH-27196)
Serhiy Storchaka committed
March 23, 2021
J
bpo-31861: Add aiter and anext to builtins (#23847)
Joshua Bronson committed
February 26, 2021
February 16, 2021
E
bpo-40170: Always define PyIter_Check() as a function (GH-24548)
Erlend Egeberg Aasland committed
January 29, 2021
V
bpo-42979: Use _Py_CheckSlotResult() to check slots result (GH-24356)
Victor Stinner committed
January 27, 2021
V
bpo-42979: Enhance abstract.c assertions checking slot result (GH-24352)
Victor Stinner committed
November 10, 2020
V
bpo-42085: Introduce dedicated entry in PyAsyncMethods for sending values (#22780)
Vladimir Matveev committed
October 12, 2020
V
Delete PyGen_Send (#22663)
Vladimir Matveev committed
October 10, 2020
V
bpo-41756: Add PyIter_Send function (#22443)
Vladimir Matveev committed
October 9, 2020
S
bpo-41974: Remove complex.__float__, complex.__floordiv__, etc (GH-22593)
Serhiy Storchaka committed
October 4, 2020
S
bpo-41909: Enable previously disabled recursion checks. (GH-22536)
Serhiy Storchaka committed
September 9, 2020
M
bpo-41428: Implementation for PEP 604 (GH-21515)
Maggie Moss committed
July 10, 2020
V
bpo-39573: Use the Py_TYPE() macro (GH-21433)
Victor Stinner committed
June 29, 2020
I
bpo-41123: Remove PyLong_FromUnicode() (GH-21204)
Inada Naoki committed
June 25, 2020
I
bpo-41103: Remove old buffer protocol support (#21117)
Inada Naoki committed
June 23, 2020
V
bpo-36710: Pass tstate explicitly in abstract.c (GH-21075)
Victor Stinner committed
June 22, 2020
S
bpo-40824: Do not mask errors in __iter__ in "in" and the operator module. (GH-20537)
Serhiy Storchaka committed
May 28, 2020
S
bpo-40792: Make the result of PyNumber_Index() always having exact type int. (GH-20443)
Serhiy Storchaka committed
May 26, 2020
S
bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636)
Serhiy Storchaka committed
May 12, 2020
May 11, 2020
V
bpo-39465: Don't access directly _Py_Identifier members (GH-20043)
Victor Stinner committed
April 15, 2020
V
bpo-40268: Remove unused structmember.h includes (GH-19530)
Victor Stinner committed
April 14, 2020
V
bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)
Victor Stinner committed
April 8, 2020
V
bpo-40170: Remove PyIndex_Check() macro (GH-19428)
Victor Stinner committed
V
bpo-40170: Add _PyIndex_Check() internal function (GH-19426)
Victor Stinner committed
April 7, 2020
V
bpo-40170: Convert PyObject_CheckBuffer() macro to a function (GH-19376)
Victor Stinner committed
G
bpo-39481: Implementation for PEP 585 (#18239)
Guido van Rossum committed
March 13, 2020
V
bpo-39947: Move Py_EnterRecursiveCall() to internal C API (GH-18972)
Victor Stinner committed
March 9, 2020
S
March 6, 2020
A
bpo-39573: Use Py_IS_TYPE() macro to check for types (GH-18809)
Andy Lester committed
March 4, 2020
A
bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601)
Andy Lester committed
February 22, 2020
Y
bpo-39382: Avoid dangling object use in abstract_issubclass() (GH-18530)
Yonatan Goldschmidt committed