COMMITS
/ Objects/typeobject.c 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
October 31, 2018
V
bpo-35081: Add pycore_ prefix to internal header files (GH-10263)
Victor Stinner committed
S
bpo-33138: Change standard error message for non-pickleable and non-copyable types. (GH-6239)
Serhiy Storchaka committed
October 26, 2018
V
bpo-9263: _PyXXX_CheckConsistency() use _PyObject_ASSERT() (GH-10108)
Victor Stinner committed
V
bpo-9263: Use _PyObject_ASSERT() in typeobject.c (GH-10111)
Victor Stinner committed
September 7, 2018
J
bpo-25750: fix refcounts in type_getattro() (GH-6118)
jdemeyer committed
August 25, 2018
A
closes bpo-34501: PyType_FromSpecWithBases: Check spec->name before dereferencing it. (GH-8930)
Alexey Izbyshev committed
August 24, 2018
A
closes bpo-34477: Objects/typeobject.c: Add missing NULL check to type_init() (GH-8876)
Alexey Izbyshev committed
May 8, 2018
G
Fix typo in __mul__ and __rmul__ docstring (GH-6674)
Grant Jenks committed
February 4, 2018
L
bpo-32746: Fix multiple typos (GH-5144)
Leo Arias committed
January 25, 2018
S
bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code (GH-5222)
Serhiy Storchaka committed
January 4, 2018
S
bpo-32226: Make __class_getitem__ an automatic class method. (#5098)
Serhiy Storchaka committed
B
Fix outdated comment in typeobject.c (GH-5090)
Berker Peksag committed