diff options
author | Georg Brandl <georg@python.org> | 2013-10-06 17:14:46 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-06 17:14:46 (GMT) |
commit | 3686db104c7f3cf03864df6951c6ad9011fb6ea3 (patch) | |
tree | 1ae66a99cf27ccf738aaaef01b0e969c362c56f2 /Doc | |
parent | b68b970a01338ca3f4ca609486cb3e1512051f9e (diff) | |
parent | f6d6347fc0c1e636e5d96ce760806e6572176b47 (diff) | |
download | cpython-3686db104c7f3cf03864df6951c6ad9011fb6ea3.zip cpython-3686db104c7f3cf03864df6951c6ad9011fb6ea3.tar.gz cpython-3686db104c7f3cf03864df6951c6ad9011fb6ea3.tar.bz2 |
merge with 3.3
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/operator.rst | 2 |
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): |