summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2013-10-06 17:14:46 (GMT)
committerGeorg Brandl <georg@python.org>2013-10-06 17:14:46 (GMT)
commit3686db104c7f3cf03864df6951c6ad9011fb6ea3 (patch)
tree1ae66a99cf27ccf738aaaef01b0e969c362c56f2 /Doc
parentb68b970a01338ca3f4ca609486cb3e1512051f9e (diff)
parentf6d6347fc0c1e636e5d96ce760806e6572176b47 (diff)
downloadcpython-3686db104c7f3cf03864df6951c6ad9011fb6ea3.zip
cpython-3686db104c7f3cf03864df6951c6ad9011fb6ea3.tar.gz
cpython-3686db104c7f3cf03864df6951c6ad9011fb6ea3.tar.bz2
merge with 3.3
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/operator.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst
index d01d33a..80bad71 100644
--- a/Doc/library/operator.rst
+++ b/Doc/library/operator.rst
@@ -278,7 +278,7 @@ expect a function argument.
return resolve_attr(obj, attr)
else:
def g(obj):
- return tuple(resolve_att(obj, attr) for attr in items)
+ return tuple(resolve_attr(obj, attr) for attr in items)
return g
def resolve_attr(obj, attr):