[Python-checkins] cpython (2.7): Fix typo in function name.

georg.brandl python-checkins at python.org
Sun Oct 6 19:14:11 CEST 2013


http://hg.python.org/cpython/rev/6b1319ee1bca
changeset:   86119:6b1319ee1bca
branch:      2.7
parent:      86114:74ae6064d3e8
user:        Georg Brandl <georg at python.org>
date:        Sun Oct 06 19:14:35 2013 +0200
summary:
  Fix typo in function name.

files:
  Doc/library/operator.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst
--- a/Doc/library/operator.rst
+++ b/Doc/library/operator.rst
@@ -514,7 +514,7 @@
                   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):

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list