COMMITS
/ Objects/typeobject.c November 14, 2019
V
bpo-38644: Add _PyObject_Call() (GH-17089)
Victor Stinner committed
November 8, 2019
V
bpo-38644: Add _PyObject_VectorcallTstate() (GH-17052)
Victor Stinner committed
November 5, 2019
V
bpo-38644: Pass tstate to _Py_CheckFunctionResult() (GH-17050)
Victor Stinner committed
October 7, 2019
V
bpo-36389: _PyObject_CheckConsistency() available in release mode (GH-16612)
Victor Stinner committed
September 19, 2019
E
bpo-38140: Make dict and weakref offsets opaque for C heap types (#16076)
Eddie Elizondo committed
September 11, 2019
D
bpo-34331: Fix incorrectly pluralized abstract class error message. (GH-8670)
Daniel Andrade committed
E
bpo-37879: Suppress subtype_dealloc decref when base type is a C heap type (GH-15323)
Eddie Elizondo committed
September 10, 2019
J
bpo-37619: update_one_slot() should not ignore wrapper descriptors for wrong type (GH-14836)
Jeroen Demeyer committed
J
Expand comment explaining update_one_slot (GH-14810)
Jeroen Demeyer committed
September 1, 2019
S
bpo-37994: Fix silencing all errors if an attribute lookup fails. (GH-15630)
Serhiy Storchaka committed
August 30, 2019
M
Fix typos mostly in comments, docs and test names (GH-15209)
Min ho Kim committed
August 15, 2019
J
bpo-37207: enable vectorcall for type.__call__ (GH-14588)
Jeroen Demeyer committed
July 30, 2019
M
Fix typos in comments, docs and test names (#15018)
Min ho Kim committed
July 11, 2019
J
bpo-37547: add _PyObject_CallMethodOneArg (GH-14685)
Jeroen Demeyer 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 24, 2019
J
bpo-36974: inherit tp_vectorcall_offset unconditionally (GH-13858)
Jeroen Demeyer committed
June 17, 2019
J
bpo-36922: use Py_TPFLAGS_METHOD_DESCRIPTOR in lookup_maybe_method() (GH-13865)
Jeroen Demeyer committed
June 13, 2019
J
bpo-37231: optimize calls of special methods (GH-13973)
Jeroen Demeyer committed
June 2, 2019
J
bpo-36974: add some assertions for PEP 590 (GH-13682)
Jeroen Demeyer committed
P
bpo-37012: Clean up special cases in PyType_FromSpecWithBases slot assignments (GH-13496)
Petr Viktorin committed
P
bpo-36974: Make tp_call=PyVectorcall_Call work for inherited types (GH-13699)
Petr Viktorin committed
June 1, 2019
May 31, 2019
P
bpo-37108: Support super with methods that use positional-only arguments (GH-13695)
Pablo Galindo committed
Z
bpo-36379: __ipow__ must be a ternaryfunc, not a binaryfunc (GH-13546)
Zackery Spytz committed
J
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464)
Jeroen Demeyer committed
May 30, 2019
J
bpo-36974: inherit the vectorcall protocol (GH-13498)
Jeroen Demeyer committed
May 29, 2019
A
bpo-32388: Remove cross-version binary compatibility requirement in tp_flags (GH-4944)
Antoine Pitrou committed
May 28, 2019
Z
bpo-26423: Fix possible overflow in wrap_lenfunc() (GH-13606)
Zackery Spytz committed
J
bpo-36922: implement PEP-590 Py_TPFLAGS_METHOD_DESCRIPTOR (GH-13338)
Jeroen Demeyer committed
May 26, 2019
J
bpo-28866: No type cache for types with specialized mro, invalidation is hard. (#13157)
Julien Palard committed
May 24, 2019
C
bpo-20285: Improve help docs for object (GH-4759)
Cheryl Sabella committed
May 23, 2019
S
bpo-36842: Implement PEP 578 (GH-12613)
Steve Dower committed
May 20, 2019
Z
closes bpo-36951: Correct some types in the type_members struct in typeobject.c. (GH-13403)
Zackery Spytz committed
May 10, 2019
J
bpo-35983: skip trashcan for subclasses (GH-11841)
Jeroen Demeyer committed
May 9, 2019
Z
Fix a possible crash due to PyType_FromSpecWithBases() (GH-10304)
Zackery Spytz committed
May 6, 2019
E
Only count number of members once (#12691)
Eddie Elizondo committed
April 12, 2019
V
bpo-36389: Add _PyObject_CheckConsistency() function (GH-12803)
Victor Stinner committed
March 27, 2019
E
bpo-35810: Incref heap-allocated types in PyObject_Init (GH-11661)
Eddie Elizondo committed
February 26, 2019
B
closes bpo-36115: Fix some reference leaks in typeobject.c. (GH-12045)
Benjamin Peterson committed
February 25, 2019
S
bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)
Serhiy Storchaka committed
February 20, 2019
S
bpo-36012: Avoid linear slot search for non-dunder methods (GH-11907)
Stefan Behnel committed
February 19, 2019
S
bpo-31506: Clarify error messages for object.__new__ and object.__init__ (GH-11641)
Sanyam Khurana committed
December 21, 2018
X
bpo-34193: Fix pluralization in getargs.c and test cases. (GH-8438)
Xtreak committed
November 27, 2018
S
bpo-33012: Fix more invalid function cast warnings with gcc 8. (GH-10751)
Serhiy Storchaka committed
S
bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749)
Serhiy Storchaka committed
November 21, 2018
V
bpo-35081: Add Include/internal/pycore_object.h (GH-10640)
Victor Stinner committed
November 13, 2018
E
bpo-34784: Fix PyStructSequence_NewType with heap-allocated StructSequence (GH-9665)
Eddie Elizondo committed
November 12, 2018
V
bpo-35081: Rename internal headers (GH-10275)
Victor Stinner committed
November 1, 2018
V
bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266)
Victor Stinner committed