aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNickolena Fisher <ndfishe@gmail.com>2020-04-26 12:49:11 -0500
committerGitHub <noreply@github.com>2020-04-26 10:49:11 -0700
commitcfaf4c09ab959a9e6d8fc446ba7595f132d770ac (patch)
tree94b788d290db53e013fd283f8dfad963ddb3f537 /Lib/typing.py
parentFix typo in object.__format__ docs (GH-19504) (diff)
downloadcpython-cfaf4c09ab959a9e6d8fc446ba7595f132d770ac.tar.gz
cpython-cfaf4c09ab959a9e6d8fc446ba7595f132d770ac.tar.bz2
cpython-cfaf4c09ab959a9e6d8fc446ba7595f132d770ac.zip
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 0dcf291950f..1b13aed22a3 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.