mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Fix whitespace
This commit is contained in:
parent
7e0c581c49
commit
7dabfede34
1 changed files with 1 additions and 1 deletions
|
@ -196,7 +196,7 @@ def lru_cache(maxsize=100, typed=False):
|
||||||
def wrapper(*args, **kwds):
|
def wrapper(*args, **kwds):
|
||||||
# no caching, just do a statistics update after a successful call
|
# no caching, just do a statistics update after a successful call
|
||||||
nonlocal misses
|
nonlocal misses
|
||||||
result = user_function(*args, **kwds)
|
result = user_function(*args, **kwds)
|
||||||
misses += 1
|
misses += 1
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue