summaryrefslogtreecommitdiffstats
path: root/Objects/genericaliasobject.c
Commit message (Expand)AuthorAgeFilesLines
* [3.11] gh-101765: Fix SystemError / segmentation fault in iter `__reduce__` w...Ionite2023-02-251-1/+10
* gh-98852: Fix subscription of type aliases (GH-98920)Miss Islington (bot)2022-11-011-0/+7
* gh-94607: Fix subclassing generics (GH-94610)Miss Islington (bot)2022-07-091-0/+4
* gh-89828: Do not relay the __class__ attribute in GenericAlias (GH-93754)Miss Islington (bot)2022-06-181-0/+1
* [3.11] gh-91162: Support splitting of unpacked arbitrary-length tuple over Ty...Miss Islington (bot)2022-06-141-56/+43
* gh-93345: Fix a crash in substitution of nested TypeVar after TypeVarTuple (G...Miss Islington (bot)2022-06-011-1/+1
* [3.11] gh-91162: Fix substitution of unpacked tuples in generic aliases (GH-9...Miss Islington (bot)2022-06-011-13/+108
* gh-87390: Fix starred tuple equality and pickling (GH-92337)Serhiy Storchaka2022-05-051-0/+26
* gh-87390: Add __unpacked__ attribute to types.GenericAlias (#92059)Jelle Zijlstra2022-05-021-0/+2
* bpo-43224: Implement substitution of unpacked TypeVarTuple in C (GH-31828)Serhiy Storchaka2022-04-301-14/+104
* gh-91632: Fix generic_alias_iterator to be finalized at exit. (GH-91727)Dong-hee Na2022-04-201-2/+4
* gh-91118: Fix docstrings that do not honor --without-doc-strings (#31769)Oleg Iarygin2022-04-181-4/+6
* bpo-47067: Optimize calling GenericAlias objects (GH-31996)penguin_wwy2022-03-211-7/+32
* bpo-43224: Implement PEP 646 changes to genericaliasobject.c (GH-31019)Matthew Rahtz2022-03-121-0/+75
* bpo-44796: Unify TypeVar and ParamSpec substitution (GH-31143)Serhiy Storchaka2022-03-111-32/+14
* bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...Eric Snow2022-02-081-12/+7
* bpo-45167: Fix deepcopying of GenericAlias (GH-28324)Serhiy Storchaka2021-09-151-0/+2
* bpo-44854: Remove trailing whitespaces (GH-27689)Serhiy Storchaka2021-08-091-1/+1
* bpo-44654: Refactor and clean up the union type implementation (GH-27196)Serhiy Storchaka2021-07-171-4/+3
* bpo-44490: Add __parameters__ and __getitem__ to types.Union (GH-26980)Yurii Karabas2021-07-061-19/+31
* bpo-44562: Use PyType_GenericAlloc in Py_GenericAlias (GH-27021)Pablo Galindo2021-07-051-2/+2
* bpo-44562: Remove invalid PyObject_GC_Del from error path of types.GenericAli...Ken Jin2021-07-041-3/+3
* bpo-41559: Change PEP 612 implementation to pure Python (#25449)Ken Jin2021-04-281-62/+14
* bpo-42814: Fix undefined behavior in Objects/genericaliasobject.c (GH-24073)Zackery Spytz2021-01-031-1/+1
* bpo-41559: Implement PEP 612 - Add ParamSpec and Concatenate to typing (#23702)kj2020-12-241-14/+62
* bpo-42195: Ensure consistency of Callable's __args__ in collections.abc and t...kj2020-12-131-21/+39
* bpo-42576: Raise TypeError when passing in keyword arguments to GenericAlias ...kj2020-12-051-1/+1
* bpo-42332: Add weakref slot to types.GenericAlias (GH-23250)kj2020-11-161-0/+6
* bpo-42233: Add union type expression support for GenericAlias and fix de-dupl...kj2020-11-091-0/+6
* Fix the attribute names in the docstring of GenericAlias (GH-22594)Mikhail Golubev2020-10-081-1/+1
* bpo-41780: Fix __dir__ of types.GenericAlias (GH-22262)Batuhan Taskaya2020-09-151-0/+39
* bpo-39573: Use the Py_TYPE() macro (GH-21433)Victor Stinner2020-07-101-1/+1
* bpo-39573: Use Py_IS_TYPE to check for types (GH-19882)Hai Shi2020-05-041-2/+2
* bpo-40408: Fix support of nested type variables in GenericAlias. (GH-19836)Serhiy Storchaka2020-05-041-19/+104
* Update ga_new to use _PyArg_CheckPositional and _PyArg_NoKwnames (GH-19679)Dong-hee Na2020-04-231-4/+2
* bpo-40268: Remove unused structmember.h includes (GH-19530)Victor Stinner2020-04-151-2/+2
* bpo-39481: Implementation for PEP 585 (#18239)Guido van Rossum2020-04-071-0/+507