summaryrefslogtreecommitdiffstats
path: root/Objects/typeobject.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-42412: Fix possible leaks and check arguments in PyType_FromModuleAndSpec...Miss Islington (bot)2020-11-211-5/+18
* bpo-41984: GC track all user classes (GH-22701/GH-22707)Miss Skeleton (bot)2020-10-151-16/+6
* bpo-41295: Reimplement the Carlo Verre "hackcheck" (GH-21528)Miss Islington (bot)2020-07-181-7/+20
* bpo-39960: Allow heap types in the "Carlo Verre" hack check that override "tp...scoder2020-07-051-11/+30
* [3.8] bpo-36389: Backport debug enhancements from master (GH-16796)Victor Stinner2019-10-151-8/+10
* [3.8] bpo-37879: Suppress subtype_dealloc decref when base type is a C heap t...Petr Viktorin2019-09-121-10/+10
* bpo-37619: update_one_slot() should not ignore wrapper descriptors for wrong ...Miss Islington (bot)2019-09-101-6/+13
* [3.8] bpo-37994: Fix silencing all errors if an attribute lookup fails. (GH-1...Serhiy Storchaka2019-09-011-62/+67
* Fix typos mostly in comments, docs and test names (GH-15209)Miss Islington (bot)2019-08-301-1/+1
* bpo-36974: inherit tp_vectorcall_offset unconditionally (GH-13858) (GH-14342)Miss Islington (bot)2019-06-251-6/+6
* bpo-36922: use Py_TPFLAGS_METHOD_DESCRIPTOR in lookup_maybe_method() (GH-13865)Miss Islington (bot)2019-06-171-1/+1
* bpo-36974: add some assertions for PEP 590 (GH-13682)Jeroen Demeyer2019-06-021-0/+14
* bpo-37012: Clean up special cases in PyType_FromSpecWithBases slot assignment...Petr Viktorin2019-06-021-9/+11
* bpo-36974: Make tp_call=PyVectorcall_Call work for inherited types (GH-13699)Petr Viktorin2019-06-021-10/+14
* bpo-37122: Make co->co_argcount represent the total number of positonal argum...Pablo Galindo2019-06-011-1/+1
* bpo-37108: Support super with methods that use positional-only arguments (GH-...Pablo Galindo2019-05-311-1/+1
* bpo-36379: __ipow__ must be a ternaryfunc, not a binaryfunc (GH-13546)Zackery Spytz2019-05-311-1/+1
* bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...Jeroen Demeyer2019-05-311-7/+6
* bpo-36974: inherit the vectorcall protocol (GH-13498)Jeroen Demeyer2019-05-301-0/+11
* bpo-32388: Remove cross-version binary compatibility requirement in tp_flags ...Antoine Pitrou2019-05-291-7/+4
* bpo-26423: Fix possible overflow in wrap_lenfunc() (GH-13606)Zackery Spytz2019-05-281-1/+1
* bpo-36922: implement PEP-590 Py_TPFLAGS_METHOD_DESCRIPTOR (GH-13338)Jeroen Demeyer2019-05-281-1/+10
* bpo-28866: No type cache for types with specialized mro, invalidation is hard...Julien Palard2019-05-261-8/+30
* bpo-20285: Improve help docs for object (GH-4759)Cheryl Sabella2019-05-241-1/+6
* bpo-36842: Implement PEP 578 (GH-12613)Steve Dower2019-05-231-0/+11
* closes bpo-36951: Correct some types in the type_members struct in typeobject...Zackery Spytz2019-05-201-3/+3
* bpo-35983: skip trashcan for subclasses (GH-11841)Jeroen Demeyer2019-05-101-72/+2
* Fix a possible crash due to PyType_FromSpecWithBases() (GH-10304)Zackery Spytz2019-05-091-0/+1
* Only count number of members once (#12691)Eddie Elizondo2019-05-061-0/+1
* bpo-36389: Add _PyObject_CheckConsistency() function (GH-12803)Victor Stinner2019-04-121-5/+6
* bpo-35810: Incref heap-allocated types in PyObject_Init (GH-11661)Eddie Elizondo2019-03-271-3/+0
* closes bpo-36115: Fix some reference leaks in typeobject.c. (GH-12045)Benjamin Peterson2019-02-261-0/+2
* bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)Serhiy Storchaka2019-02-251-76/+158
* bpo-36012: Avoid linear slot search for non-dunder methods (GH-11907)Stefan Behnel2019-02-201-13/+38
* bpo-31506: Clarify error messages for object.__new__ and object.__init__ (GH-...Sanyam Khurana2019-02-191-3/+6
* bpo-34193: Fix pluralization in getargs.c and test cases. (GH-8438)Xtreak2018-12-211-1/+1
* bpo-33012: Fix more invalid function cast warnings with gcc 8. (GH-10751)Serhiy Storchaka2018-11-271-2/+2
* bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749)Serhiy Storchaka2018-11-271-3/+3
* bpo-35081: Add Include/internal/pycore_object.h (GH-10640)Victor Stinner2018-11-211-0/+1
* bpo-34784: Fix PyStructSequence_NewType with heap-allocated StructSequence (G...Eddie Elizondo2018-11-131-4/+24
* bpo-35081: Rename internal headers (GH-10275)Victor Stinner2018-11-121-1/+1
* bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266)Victor Stinner2018-11-011-2/+2
* bpo-35081: Add pycore_ prefix to internal header files (GH-10263)Victor Stinner2018-10-311-1/+1
* bpo-33138: Change standard error message for non-pickleable and non-copyable ...Serhiy Storchaka2018-10-311-3/+3
* bpo-9263: _PyXXX_CheckConsistency() use _PyObject_ASSERT() (GH-10108)Victor Stinner2018-10-261-3/+7
* bpo-9263: Use _PyObject_ASSERT() in typeobject.c (GH-10111)Victor Stinner2018-10-261-10/+13
* bpo-25750: fix refcounts in type_getattro() (GH-6118)jdemeyer2018-09-071-6/+11
* closes bpo-34501: PyType_FromSpecWithBases: Check spec->name before dereferen...Alexey Izbyshev2018-08-251-4/+9
* closes bpo-34477: Objects/typeobject.c: Add missing NULL check to type_init()...Alexey Izbyshev2018-08-241-0/+3
* Fix typo in __mul__ and __rmul__ docstring (GH-6674)Grant Jenks2018-05-081-2/+2