Removed redundant call of update_wrapper().

This commit is contained in:
Serhiy Storchaka 2015-10-24 09:51:53 +03:00
parent 45120f272b
commit ce2295def3
1 changed files with 1 additions and 1 deletions

View File

@ -536,7 +536,7 @@ def _lru_cache_wrapper(user_function, maxsize, typed, _CacheInfo):
wrapper.cache_info = cache_info
wrapper.cache_clear = cache_clear
return update_wrapper(wrapper, user_function)
return wrapper
try:
from _functools import _lru_cache_wrapper