Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
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