diff options
author | Ikko Ashimine <eltociear@gmail.com> | 2021-06-22 22:42:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-22 22:42:28 (GMT) |
commit | 35b773accb41f09e40bf17bfaa5f0bc80796a26c (patch) | |
tree | d51068501fd26b665a3d5b9faca3c86eccccd64c /Lib/test/test_typing.py | |
parent | 6af4e6b266cb19d646ad7e4051fc7974c3096d23 (diff) | |
download | cpython-35b773accb41f09e40bf17bfaa5f0bc80796a26c.zip cpython-35b773accb41f09e40bf17bfaa5f0bc80796a26c.tar.gz cpython-35b773accb41f09e40bf17bfaa5f0bc80796a26c.tar.bz2 |
Fix typo in test_typing.py (GH-26853)
maximium -> maximum
Diffstat (limited to 'Lib/test/test_typing.py')
-rw-r--r-- | Lib/test/test_typing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_typing.py b/Lib/test/test_typing.py index eff0f5b..cb198d6 100644 --- a/Lib/test/test_typing.py +++ b/Lib/test/test_typing.py @@ -517,7 +517,7 @@ class LiteralTests(BaseTestCase): def test_illegal_parameters_do_not_raise_runtime_errors(self): # Type checkers should reject these types, but we do not - # raise errors at runtime to maintain maximium flexibility. + # raise errors at runtime to maintain maximum flexibility. Literal[int] Literal[3j + 2, ..., ()] Literal[{"foo": 3, "bar": 4}] |