]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in Lib/typing.py (GH-19717)
authorNickolena Fisher <ndfishe@gmail.com>
Sun, 26 Apr 2020 17:49:11 +0000 (12:49 -0500)
committerGitHub <noreply@github.com>
Sun, 26 Apr 2020 17:49:11 +0000 (10:49 -0700)
Lib/typing.py

index 0dcf291950f7d1fddbc2c77eb906141c567ef1c5..1b13aed22a38c0bb3978e01a940499a6c20f07e4 100644 (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.