summaryrefslogtreecommitdiffstats
path: root/Objects/genericaliasobject.c
Commit message (Expand)AuthorAgeFilesLines
* 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