summaryrefslogtreecommitdiff
path: root/Lib/collections
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-08-17 16:58:13 +0300
committerEzio Melotti <ezio.melotti@gmail.com>2013-08-17 16:58:13 +0300
commita7e7497d885b5616fbe9bd4b16778f9e0e50b07d (patch)
tree5e1e28b27364065e3f3f6ea06df67ad5e1228531 /Lib/collections
parente0c69161bc9d4e9deca4fc0add189b4df9cce8cb (diff)
parent85a8629d2134969fc9c35b56509d3a76d9dccecf (diff)
downloadcpython-git-a7e7497d885b5616fbe9bd4b16778f9e0e50b07d.tar.gz
#18466: merge with 3.3.
Diffstat (limited to 'Lib/collections')
-rw-r--r--Lib/collections/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py
index e1a075c758..0f19f30b4b 100644
--- a/Lib/collections/__init__.py
+++ b/Lib/collections/__init__.py
@@ -372,7 +372,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: