aboutsummaryrefslogtreecommitdiff
path: root/Objects/genericaliasobject.c
AgeCommit message (Expand)Author
2021-09-15bpo-45167: Fix deepcopying of GenericAlias (GH-28324)Serhiy Storchaka
2021-08-09bpo-44854: Remove trailing whitespaces (GH-27689)Serhiy Storchaka
2021-07-17bpo-44654: Refactor and clean up the union type implementation (GH-27196)Serhiy Storchaka
2021-07-06bpo-44490: Add __parameters__ and __getitem__ to types.Union (GH-26980)Yurii Karabas
2021-07-05bpo-44562: Use PyType_GenericAlloc in Py_GenericAlias (GH-27021)Pablo Galindo
2021-07-04bpo-44562: Remove invalid PyObject_GC_Del from error path of types.GenericAli...Ken Jin
2021-04-28bpo-41559: Change PEP 612 implementation to pure Python (#25449)Ken Jin
2021-01-03bpo-42814: Fix undefined behavior in Objects/genericaliasobject.c (GH-24073)Zackery Spytz
2020-12-23bpo-41559: Implement PEP 612 - Add ParamSpec and Concatenate to typing (#23702)kj
2020-12-13bpo-42195: Ensure consistency of Callable's __args__ in collections.abc and t...kj
2020-12-05bpo-42576: Raise TypeError when passing in keyword arguments to GenericAlias ...kj
2020-11-15bpo-42332: Add weakref slot to types.GenericAlias (GH-23250)kj
2020-11-08bpo-42233: Add union type expression support for GenericAlias and fix de-dupl...kj
2020-10-08Fix the attribute names in the docstring of GenericAlias (GH-22594)Mikhail Golubev
2020-09-15bpo-41780: Fix __dir__ of types.GenericAlias (GH-22262)Batuhan Taskaya
2020-07-10bpo-39573: Use the Py_TYPE() macro (GH-21433)Victor Stinner
2020-05-04bpo-39573: Use Py_IS_TYPE to check for types (GH-19882)Hai Shi
2020-05-04bpo-40408: Fix support of nested type variables in GenericAlias. (GH-19836)Serhiy Storchaka
2020-04-24Update ga_new to use _PyArg_CheckPositional and _PyArg_NoKwnames (GH-19679)Dong-hee Na
2020-04-15bpo-40268: Remove unused structmember.h includes (GH-19530)Victor Stinner
2020-04-07bpo-39481: Implementation for PEP 585 (#18239)Guido van Rossum