summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* bpo-41972: Tweak fastsearch.h string search algorithms (GH-27091)Dennis Sweeney2021-07-191-272/+331
* bpo-44661: Update property_descr_set to use vectorcall if possible. (GH-27206)Dong-hee Na2021-07-191-7/+18
* bpo-44633: Fix parameter substitution of the union type with wrong types. (GH...Serhiy Storchaka2021-07-181-16/+28
* bpo-44654: Refactor and clean up the union type implementation (GH-27196)Serhiy Storchaka2021-07-175-99/+55
* Remove legacy opcache structs (GH-27164)Ken Jin2021-07-161-1/+1
* bpo-44652: Preserve natural order of args in the union type. (GH-27185)Serhiy Storchaka2021-07-161-2/+2
* bpo-44636: Collapse union of equal types (GH-27178)Serhiy Storchaka2021-07-161-8/+16
* bpo-44646: Fix the hash of the union type. (#27179)Serhiy Storchaka2021-07-161-4/+6
* bpo-44184: Apply GH-26274 to the non-GC-type branch of subtype_dealloc (GH-27...T. Wouters2021-07-151-3/+11
* bpo-42073: allow classmethod to wrap other classmethod-like descriptors (#27115)Ɓukasz Langa2021-07-151-1/+1
* bpo-44632: Fix support of TypeVar in the union type (GH-27139)Serhiy Storchaka2021-07-141-1/+1
* bpo-44635: Convert None to NoneType in the union type constructor (GH-27136)Serhiy Storchaka2021-07-141-9/+7
* bpo-44606: Fix __instancecheck__ and __subclasscheck__ for the union type. (G...Serhiy Storchaka2021-07-141-4/+19
* bpo-44207: Add an internal version number to function objects. (GH-27078)Mark Shannon2021-07-121-1/+25
* bpo-43908: Immutable types inherit vectorcall (GH-27001)Erlend Egeberg Aasland2021-07-081-4/+4
* bpo-43950: Add option to opt-out of PEP-657 (GH-27023)Ammar Askar2021-07-072-35/+44
* bpo-44530: Add co_qualname field to PyCodeObject (GH-26941)Gabriele N. Tornetta2021-07-074-61/+104
* bpo-44490: Add __parameters__ and __getitem__ to types.Union (GH-26980)Yurii Karabas2021-07-062-19/+84
* bpo-44562: Use PyType_GenericAlloc in Py_GenericAlias (GH-27021)Pablo Galindo2021-07-051-2/+2
* bpo-43950: use 0-indexed column offsets for bytecode positions (GH-27011)Batuhan Taskaya2021-07-041-11/+8
* bpo-44562: Remove invalid PyObject_GC_Del from error path of types.GenericAli...Ken Jin2021-07-041-3/+3
* bpo-44553: Correct failure in tp_new for the union object (GH-27008)Pablo Galindo2021-07-031-2/+2
* bpo-44553 : Implement GC methods for types.Union (GH-26993)Ken Jin2021-07-031-4/+17
* bpo-43950: Add code.co_positions (PEP 657) (GH-26955)Pablo Galindo2021-07-022-30/+271
* bpo-43770: Cleanup _PyObject_GetMethod() (GH-26946)Victor Stinner2021-07-011-21/+19
* bpo-44531: Add _PyType_AllocNoTrack() function (GH-26947)Victor Stinner2021-07-013-28/+49
* bpo-44523: Remove the pass-through for hash() in weakref proxy objects (GH-26...Pablo Galindo2021-06-291-16/+2
* bpo-44531: Fix type_repr() if tp_name is NULL (GH-26948)Victor Stinner2021-06-291-0/+6
* bpo-44110: Improve string's __getitem__ error message (GH-26042)Miguel Brito2021-06-271-1/+2
* bpo-43693 Get rid of CO_NOFREE -- it's unused (GH-26839)Guido van Rossum2021-06-231-7/+0
* bpo-39947: Remove old private trashcan C API functions (GH-26869)Victor Stinner2021-06-231-48/+8
* bpo-43770: Cleanup PyModuleDef_Init() (GH-26879)Victor Stinner2021-06-231-2/+1
* bpo-44486: Make sure that modules always have a dictionary. (GH-26847)Mark Shannon2021-06-231-41/+61
* bpo-44483: Fix crash in union object with bad ``__module__`` (GH-26848)Ken Jin2021-06-221-3/+14
* bpo-43693: Turn localspluskinds into an object (GH-26749)Guido van Rossum2021-06-213-23/+28
* bpo-44032: Move pointer to code object from frame-object to frame specials ar...Mark Shannon2021-06-181-16/+23
* Do not clear globals or builtins when calling clear() on a frame object. Reve...Mark Shannon2021-06-171-5/+4
* bpo-38211: Clean up type_init() (GH-16257)Sergey Fedoseev2021-06-161-19/+4
* bpo-43693: Eliminate unused "fast locals". (gh-26587)Eric Snow2021-06-153-171/+62
* Fix typo in lnotab_notes.txt (GH-26711)Gabriele N. Tornetta2021-06-141-1/+1
* bpo-44338: Port LOAD_GLOBAL to PEP 659 adaptive interpreter (GH-26638)Mark Shannon2021-06-141-68/+6
* Fix a potential reference-counting bug in long_pow (GH-26690)Mark Dickinson2021-06-131-0/+1
* bpo-44376 - reduce pow() overhead for small exponents (GH-26662)Tim Peters2021-06-121-5/+45
* Add more const modifiers. (GH-26691)Serhiy Storchaka2021-06-122-4/+4
* bpo-44337: Port LOAD_ATTR to PEP 659 adaptive interpreter (GH-26595)Mark Shannon2021-06-103-86/+3
* bpo-43693: Do not check co_cell2arg if a non-cell offset. (gh-26626)Eric Snow2021-06-091-2/+5
* bpo-43693: Un-revert commit f3fa63e. (#26609)Eric Snow2021-06-082-17/+125
* Revert "bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offset...Pablo Galindo2021-06-082-124/+17
* bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offsets. (gh-2...Eric Snow2021-06-072-17/+124
* bpo-43693: Un-revert commits 2c1e258 and b2bf2bc. (gh-26577)Eric Snow2021-06-074-222/+472