Fix typo in Lib/typing.py (GH-19717)

This commit is contained in:
Nickolena Fisher 2020-04-26 12:49:11 -05:00 committed by GitHub
parent ef33712baa
commit cfaf4c09ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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.