diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-17 13:57:41 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-17 13:57:41 (GMT) |
commit | 85a8629d2134969fc9c35b56509d3a76d9dccecf (patch) | |
tree | 6c124696b1ee60500341b94040d1055527c05991 /Lib/collections | |
parent | b5bc353b8893461b0ecdf0e4bc2b299ef2b19bc0 (diff) | |
download | cpython-85a8629d2134969fc9c35b56509d3a76d9dccecf.zip cpython-85a8629d2134969fc9c35b56509d3a76d9dccecf.tar.gz cpython-85a8629d2134969fc9c35b56509d3a76d9dccecf.tar.bz2 |
#18466: fix more typos. Patch by FĂ©vry Thibault.
Diffstat (limited to 'Lib/collections')
-rw-r--r-- | Lib/collections/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py index 254409b..d737295 100644 --- a/Lib/collections/__init__.py +++ b/Lib/collections/__init__.py @@ -375,7 +375,7 @@ def namedtuple(typename, field_names, verbose=False, rename=False): print(result._source) # For pickling to work, the __module__ variable needs to be set to the frame - # where the named tuple is created. Bypass this step in enviroments where + # where the named tuple is created. Bypass this step in environments where # sys._getframe is not defined (Jython for example) or sys._getframe is not # defined for arguments greater than 0 (IronPython). try: |