merge with 3.3

This commit is contained in:
Georg Brandl 2013-10-06 19:14:46 +02:00
commit 3686db104c
1 changed files with 1 additions and 1 deletions

View File

@ -278,7 +278,7 @@ expect a function argument.
return resolve_attr(obj, attr) return resolve_attr(obj, attr)
else: else:
def g(obj): 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 return g
def resolve_attr(obj, attr): def resolve_attr(obj, attr):