COMMITS
/ Objects/abstract.c October 22, 2021
M
bpo-30570: Use Py_EnterRecursiveCall() in issubclass() (GH-29048)
Miss Islington (bot) committed
September 19, 2021
M
bpo-44640: Improve punctuation consistency in isinstance/issubclass error messages (GH-27144) (GH-28436)
Miss Islington (bot) committed
September 7, 2021
M
bpo-45123: PyAiter_Check and PyObject_GetAiter fix & rename. (GH-28194) (GH-28199)
Miss Islington (bot) committed
July 29, 2021
M
bpo-41103: Resurrect the old buffer protocol. (GH-27437) (GH-27441)
Miss Islington (bot) committed
July 23, 2021
M
bpo-42747: Remove Py_TPFLAGS_HAVE_AM_SEND and make Py_TPFLAGS_HAVE_VERSION_TAG no-op (GH-27260) (GH-27306)
Miss Islington (bot) committed
July 17, 2021
M
[3.10] bpo-44654: Refactor and clean up the union type implementation (GH-27196) (GH-27219)
Miss Islington (bot) 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
February 11, 2020
P
bpo-39245: Switch to public API for Vectorcall (GH-18460)
Petr Viktorin committed
February 7, 2020
V
bpo-39573: Use Py_TYPE() in abstract.c (GH-18390)
Victor Stinner committed
February 4, 2020
V
Restore PyObject_IsInstance() comment (GH-18345)
Victor Stinner committed
November 4, 2019
V
bpo-38644: Pass tstate to Py_EnterRecursiveCall() (GH-16997)
Victor Stinner committed
August 21, 2019
B
abstract.c should not be executable. (GH-15348)
Benjamin Peterson committed
August 20, 2019
J
bpo-15913: Implement PyBuffer_SizeFromFormat() (GH-13873)
Joannah Nanjekye committed
August 4, 2019
S
bpo-37648: Fixed minor inconsistency in some __contains__. (GH-14904)
Serhiy Storchaka committed
July 8, 2019
J
bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267)
Jeroen Demeyer committed
July 4, 2019
J
bpo-37483: add _PyObject_CallOneArg() function (#14558)
Jeroen Demeyer committed
June 1, 2019
S
bpo-20092. Use __index__ in constructors of int, float and complex. (GH-13108)
Serhiy Storchaka committed
February 25, 2019
S
bpo-36048: Use __index__() instead of __int__() for implicit conversion if available. (GH-11952)
Serhiy Storchaka committed
February 17, 2019
I
bpo-35992: Use PySequence_GetItem only if sq_item is not NULL (GH-11857)
Ivan Levkivskyi committed
November 12, 2018
V
bpo-35081: Rename internal headers (GH-10275)
Victor Stinner committed