summaryrefslogtreecommitdiffstats
path: root/Objects/typeobject.c
Commit message (Expand)AuthorAgeFilesLines
* gh-96046: Initialize ht_cached_keys in PyType_Ready() (GH-96047)Christian Heimes2022-08-221-9/+26
* gh-96017: Fix some compiler warnings (GH-96018)Christian Heimes2022-08-191-0/+2
* GH-95589: Dont crash when subclassing extension classes with multiple inherit...Mark Shannon2022-08-171-32/+13
* GH-93911: Specialize `LOAD_ATTR` for custom `__getattribute__` (GH-93988)Ken Jin2022-08-171-13/+13
* GH-95245: Move weakreflist into the pre-header. (GH-95996)Mark Shannon2022-08-161-15/+28
* GH-95707: Fix uses of `Py_TPFLAGS_MANAGED_DICT` (GH-95854)Mark Shannon2022-08-151-17/+53
* GH-95977: Speed up calling pure python descriptor __get__ with vectorcall (gh...Kumar Aditya2022-08-141-1/+2
* docs: Fix a few typos (#94899)Tim Gates2022-08-081-1/+1
* gh-94673: Add Per-Interpreter tp_subclasses for Static Builtin Types (gh-95301)Eric Snow2022-08-051-23/+93
* gh-94673: Recover Weaklist Lookup Performance (gh-95544)Eric Snow2022-08-041-4/+8
* gh-93274: Make vectorcall safe on mutable classes & inherit it by default (#9...Petr Viktorin2022-08-041-5/+16
* gh-95388: Deprecate creating immutable types with mutable bases (GH-95533)Petr Viktorin2022-08-041-0/+26
* GH-92678: Fix tp_dictoffset inheritance. (GH-95596)Mark Shannon2022-08-031-3/+16
* GH-95245: Store object values and dict pointers in single tagged pointer. (GH...Mark Shannon2022-08-011-16/+15
* gh-94673: Add Per-Interpreter tp_weaklist for Static Builtin Types (#95302)Eric Snow2022-07-291-0/+6
* gh-94673: Add Per-Interpreter Storage for Static Builtin Types (#95255)Eric Snow2022-07-261-5/+106
* gh-94673: Always Finalize Static Builtin Types (#95153)Eric Snow2022-07-251-23/+80
* gh-94673: Add _PyStaticType_InitBuiltin() (#95152)Eric Snow2022-07-251-0/+8
* gh-93021: Fix __text_signature__ for __get__ (GH-93023)Jelle Zijlstra2022-06-211-2/+2
* gh-93937, C API: Move PyFrame_GetBack() to Python.h (#93938)Victor Stinner2022-06-191-1/+0
* GH-93990: fix refcounting bug in `add_subclass` in `typeobject.c` (GH-93989)Kumar Aditya2022-06-191-1/+4
* gh-93955: Use unbound methods for slot `__getattr__` and `__getattribute__` (...Ken Jin2022-06-181-1/+8
* gh-89546: Clean up PyType_FromMetaclass (GH-93686)Petr Viktorin2022-06-141-90/+186
* GH-90699: use statically allocated strings in typeobject.c (gh-93751)Kumar Aditya2022-06-121-2/+2
* gh-93747: Fix Refleak when handling multiple Py_tp_doc slots (gh-93749)Dong-hee Na2022-06-121-1/+1
* gh-93466: Document PyType_Spec doesn't accept repeated slot IDs; raise where ...Petr Viktorin2022-06-101-2/+14
* bpo-45383: Get metaclass from bases in PyType_From* (GH-28748)Sebastian Berg2022-06-091-94/+127
* bpo-40514: Drop EXPERIMENTAL_ISOLATED_SUBINTERPRETERS (gh-93185)Eric Snow2022-05-271-22/+3
* GH-90230: Add stats to breakdown the origin of calls to `PyEval_EvalFrame` (G...Mark Shannon2022-05-271-0/+1
* gh-60074: add new stable API function PyType_FromMetaclass (GH-93012)Wenzel Jakob2022-05-271-9/+26
* gh-91578: improved error message when trying to instantiate an abstract class...ravi1402222022-05-121-1/+1
* gh-92112: Fix crash triggered by an evil custom `mro()` (#92113)Alexey Izbyshev2022-05-061-9/+11
* gh-91320: Use _PyCFunction_CAST() (#92251)Victor Stinner2022-05-031-3/+3
* bpo-47250: Fix refleak from object.__getstate__() (GH-32403)Dong-hee Na2022-04-071-1/+0
* bpo-47177: Replace `f_lasti` with `prev_instr` (GH-32208)Brandt Bucher2022-04-071-1/+1
* bpo-26579: Add object.__getstate__(). (GH-2821)Serhiy Storchaka2022-04-061-101/+133
* bpo-47164: Add _PyASCIIObject_CAST() macro (GH-32191)Victor Stinner2022-03-311-3/+3
* bpo-46841: Quicken code in-place (GH-31888)Brandt Bucher2022-03-211-1/+4
* bpo-46921: Vectorcall support for `super()` (GH-31687)Ken Jin2022-03-061-2/+53
* bpo-46836: Rename InterpreterFrame to _PyInterpreterFrame (GH-31583)Victor Stinner2022-02-251-3/+3
* bpo-45459: C API uses type names rather than structure names (GH-31528)Victor Stinner2022-02-241-2/+2
* fix __bool__ docstring (GH-31301)Jelle Zijlstra2022-02-211-1/+1
* bpo-46541: Discover the global strings. (gh-31346)Eric Snow2022-02-151-0/+1
* bpo-46613: Add PyType_GetModuleByDef to the public API (GH-31081)Petr Viktorin2022-02-111-6/+2
* bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...Eric Snow2022-02-081-281/+206
* bpo-46433: _PyType_GetModuleByDef: handle static types in MRO (GH-30696)Petr Viktorin2022-02-021-5/+4
* bpo-46564: do not create frame object for super object (GH-31002)Kumar Aditya2022-02-011-12/+8
* bpo-40170: Remove PyHeapType_GET_MEMBERS() macro (GH-30942)Victor Stinner2022-01-271-6/+6
* bpo-40170: PyType_SUPPORTS_WEAKREFS() becomes a regular function (GH-30938)Victor Stinner2022-01-271-0/+9
* bpo-46417: Fix _PyStaticType_Dealloc() (GH-30810)Victor Stinner2022-01-221-3/+11