mirror of
https://github.com/python/cpython.git
synced 2025-09-27 02:39:58 +00:00
[3.12] gh-116731: libregrtest: Clear inspect & importlib.metadata caches in clear_caches (GH-116805) (GH-116820)
gh-116731: libregrtest: Clear inspect & importlib.metadata caches in clear_caches (GH-116805)
(cherry picked from commit bae6579b46
)
Co-authored-by: Petr Viktorin <encukou@gmail.com>
Co-authored-by: Jason R. Coombs <jaraco@jaraco.com>
This commit is contained in:
parent
56a3c5f767
commit
9d08e14a00
1 changed files with 9 additions and 0 deletions
|
@ -276,6 +276,15 @@ def clear_caches():
|
||||||
pass
|
pass
|
||||||
else:
|
else:
|
||||||
inspect._shadowed_dict_from_mro_tuple.cache_clear()
|
inspect._shadowed_dict_from_mro_tuple.cache_clear()
|
||||||
|
inspect._filesbymodname.clear()
|
||||||
|
inspect.modulesbyfile.clear()
|
||||||
|
|
||||||
|
try:
|
||||||
|
importlib_metadata = sys.modules['importlib.metadata']
|
||||||
|
except KeyError:
|
||||||
|
pass
|
||||||
|
else:
|
||||||
|
importlib_metadata.FastPath.__new__.cache_clear()
|
||||||
|
|
||||||
|
|
||||||
def get_build_info():
|
def get_build_info():
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue