summaryrefslogtreecommitdiffstats
path: root/Lib/typing.py
diff options
context:
space:
mode:
authorNickolena Fisher <ndfishe@gmail.com>2020-04-26 17:49:11 (GMT)
committerGitHub <noreply@github.com>2020-04-26 17:49:11 (GMT)
commitcfaf4c09ab959a9e6d8fc446ba7595f132d770ac (patch)
tree94b788d290db53e013fd283f8dfad963ddb3f537 /Lib/typing.py
parentef33712baa2d15878b35a02fbd6ab301c999a5fe (diff)
downloadcpython-cfaf4c09ab959a9e6d8fc446ba7595f132d770ac.zip
cpython-cfaf4c09ab959a9e6d8fc446ba7595f132d770ac.tar.gz
cpython-cfaf4c09ab959a9e6d8fc446ba7595f132d770ac.tar.bz2
Fix typo in Lib/typing.py (GH-19717)
Diffstat (limited to 'Lib/typing.py')
-rw-r--r--Lib/typing.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/typing.py b/Lib/typing.py
index 0dcf291..1b13aed 100644
--- a/Lib/typing.py
+++ b/Lib/typing.py
@@ -975,7 +975,7 @@ def _no_init(self, *args, **kwargs):
def _allow_reckless_class_cheks():
- """Allow instnance and class checks for special stdlib modules.
+ """Allow instance and class checks for special stdlib modules.
The abc and functools modules indiscriminately call isinstance() and
issubclass() on the whole MRO of a user class, which may contain protocols.