]> granicus.if.org Git - python/commitdiff
Fix typo in function name.
authorGeorg Brandl <georg@python.org>
Sun, 6 Oct 2013 17:14:35 +0000 (19:14 +0200)
committerGeorg Brandl <georg@python.org>
Sun, 6 Oct 2013 17:14:35 +0000 (19:14 +0200)
Doc/library/operator.rst

index de7a542474faf04e9b1854539ca29c1370f9bd75..03547ca4adceb2c0b1c3bd7ae0c42dbd8e9f9f87 100644 (file)
@@ -267,7 +267,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):