summaryrefslogtreecommitdiffstats
path: root/Objects/unionobject.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-44490: Add __parameters__ and __getitem__ to types.Union (GH-26980)Yurii Karabas2021-07-061-0/+53
* 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-44483: Fix crash in union object with bad ``__module__`` (GH-26848)Ken Jin2021-06-221-3/+14
* bpo-42195: Disallow isinstance/issubclass for subclasses of genericaliases in...Ken Jin2021-01-021-1/+1
* bpo-42195: Ensure consistency of Callable's __args__ in collections.abc and t...kj2020-12-131-3/+3
* bpo-42233: Add union type expression support for GenericAlias and fix de-dupl...kj2020-11-091-5/+15
* bpo-42099: Fix reference to ob_type in unionobject.c and ceval (GH-22829)Neil Schemenauer2020-10-271-1/+1
* bpo-41991: Remove _PyObject_HasAttrId (GH-22629)Serhiy Storchaka2020-10-101-6/+7
* bpo-41428: Fix compiler warning in unionobject.c (GH-22416)Victor Stinner2020-09-261-3/+3
* bpo-41428: Fix compiler warnings in unionobject.c (GH-22388)Victor Stinner2020-09-231-3/+3
* bpo-41428: Implementation for PEP 604 (GH-21515)Maggie Moss2020-09-091-0/+464