Issue #25390: typing: Don't crash on Union[str, Pattern]. (Merge 3.5->3.6)

This commit is contained in:
Guido van Rossum 2015-10-19 14:56:25 -07:00
commit 59136ccad2
3 changed files with 9 additions and 0 deletions

View File

@ -317,6 +317,10 @@ class UnionTests(TestCase):
with self.assertRaises(TypeError):
isinstance(42, Union[int, str])
def test_union_str_pattern(self):
# Shouldn't crash; see http://bugs.python.org/issue25390
A = Union[str, Pattern]
class TypeVarUnionTests(TestCase):

View File

@ -487,6 +487,9 @@ class UnionMeta(TypingMeta):
return Any
if isinstance(t1, TypeVar):
continue
if isinstance(t1, _TypeAlias):
# _TypeAlias is not a real class.
continue
if any(issubclass(t1, t2)
for t2 in all_params - {t1} if not isinstance(t2, TypeVar)):
all_params.remove(t1)

View File

@ -63,6 +63,8 @@ Core and Builtins
Library
-------
- Issue #25390: typing: Don't crash on Union[str, Pattern].
- Issue #25441: asyncio: Raise error from drain() when socket is closed.
- Issue #25410: Cleaned up and fixed minor bugs in C implementation of