Python 3.2 で導入されたモジュール 内の関数recursive_repr
には、次のソース コードがあります。reprlib
def recursive_repr(fillvalue='...'):
'Decorator to make a repr function return fillvalue for a recursive call'
def decorating_function(user_function):
repr_running = set()
def wrapper(self):
key = id(self), get_ident()
if key in repr_running:
return fillvalue
repr_running.add(key)
try:
result = user_function(self)
finally:
repr_running.discard(key)
return result
# Can't use functools.wraps() here because of bootstrap issues
wrapper.__module__ = getattr(user_function, '__module__')
wrapper.__doc__ = getattr(user_function, '__doc__')
wrapper.__name__ = getattr(user_function, '__name__')
wrapper.__annotations__ = getattr(user_function, '__annotations__', {})
return wrapper
return decorating_function
key
特定の機能の識別__repr__
は に設定されます(id(self), get_ident())
。
なぜself
それ自体がキーとして使用されなかったのですか? そして、なぜget_ident
必要だったのですか?