mirror of
https://github.com/python/cpython.git
synced 2025-10-17 12:18:23 +00:00
bpo-46529: increase coverage of typing.Union.__repr__
method (GH-30911)
This commit is contained in:
parent
b9d8980d89
commit
d0c690b5f8
1 changed files with 9 additions and 0 deletions
|
@ -325,6 +325,15 @@ class UnionTests(BaseTestCase):
|
|||
u = Union[int | float]
|
||||
self.assertEqual(repr(u), 'typing.Union[int, float]')
|
||||
|
||||
u = Union[None, str]
|
||||
self.assertEqual(repr(u), 'typing.Optional[str]')
|
||||
u = Union[str, None]
|
||||
self.assertEqual(repr(u), 'typing.Optional[str]')
|
||||
u = Union[None, str, int]
|
||||
self.assertEqual(repr(u), 'typing.Union[NoneType, str, int]')
|
||||
u = Optional[str]
|
||||
self.assertEqual(repr(u), 'typing.Optional[str]')
|
||||
|
||||
def test_cannot_subclass(self):
|
||||
with self.assertRaises(TypeError):
|
||||
class C(Union):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue