mirror of
https://github.com/python/cpython.git
synced 2026-07-13 21:42:22 -04:00
gh-116731: libregrtest: Clear inspect & importlib.metadata caches in clear_caches (GH-116805)
Co-authored-by: Jason R. Coombs <jaraco@jaraco.com>
This commit is contained in:
@@ -276,6 +276,15 @@ def clear_caches():
|
||||
pass
|
||||
else:
|
||||
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():
|
||||
|
||||
Reference in New Issue
Block a user