diff options
author | Nickolena Fisher <ndfishe@gmail.com> | 2020-04-26 12:49:11 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-26 10:49:11 -0700 |
commit | cfaf4c09ab959a9e6d8fc446ba7595f132d770ac (patch) | |
tree | 94b788d290db53e013fd283f8dfad963ddb3f537 | |
parent | ef33712baa2d15878b35a02fbd6ab301c999a5fe (diff) | |
download | cpython-git-cfaf4c09ab959a9e6d8fc446ba7595f132d770ac.tar.gz |
Fix typo in Lib/typing.py (GH-19717)
-rw-r--r-- | Lib/typing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/typing.py b/Lib/typing.py index 0dcf291950..1b13aed22a 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. |