mirror of https://github.com/python/cpython
Fix typo in function name.
This commit is contained in:
parent
ffb94ae46f
commit
f6d6347fc0
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue