Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
inspections
/
PyPep8NamingInspection
/
globals.py
blob: c055accc30d1e6637635d18478503baa8332498f [
file
] [
log
] [
blame
]
from
contextlib
import
contextmanager
MUST_REFRESH_CACHE
=
False
@contextmanager
def
fresh_per_request_cache
():
global
MUST_REFRESH_CACHE
orig
=
MUST_REFRESH_CACHE
MUST_REFRESH_CACHE
=
True
try
:
yield
finally
:
MUST_REFRESH_CACHE
=
orig