summaryrefslogtreecommitdiff
path: root/Lib/typing.py
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2018-04-20 23:08:45 +0300
committerTerry Jan Reedy <tjreedy@udel.edu>2018-04-20 16:08:45 -0400
commit61f82e0e337f971da57f8f513abfe693edf95aa5 (patch)
treed783b7677df1f57618381c0b7c925a990a115444 /Lib/typing.py
parent0399cf9b5e370516e3d0aed6a63ff74aff5eadb5 (diff)
downloadcpython-git-61f82e0e337f971da57f8f513abfe693edf95aa5.tar.gz
Spelling fixes to docs, docstrings, and comments (GH-6374)
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 d45502ffee..83296073b9 100644
--- a/Lib/typing.py
+++ b/Lib/typing.py
@@ -732,7 +732,7 @@ class _GenericAlias(_Final, _root=True):
return (self.__origin__,)
def __getattr__(self, attr):
- # We are carefull for copy and pickle.
+ # We are careful for copy and pickle.
# Also for simplicity we just don't relay all dunder names
if '__origin__' in self.__dict__ and not _is_dunder(attr):
return getattr(self.__origin__, attr)