Home
last modified time | relevance | path

Searched refs:temp_module (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Lib/
Drunpy.py94 with _TempModule(mod_name) as temp_module, _ModifiedArgv0(fname):
95 mod_globals = temp_module.module.__dict__
283 with _TempModule(run_name) as temp_module, \
285 mod_globals = temp_module.module.__dict__
/third_party/python/Lib/test/test_importlib/
Dtest_windows.py12 from .util import temp_module
65 with temp_module(name, "a = 1") as location:
Dtest_util.py477 with util.temp_module(name, pkg=True) as pkg_dir:
490 with util.temp_module(name, pkg=True) as pkg_dir:
504 with util.temp_module(name, pkg=True) as pkg_dir:
518 with util.temp_module(name, pkg=True) as pkg_dir:
Dutil.py161 def temp_module(name, content='', *, pkg=False): function
Dtest_api.py362 with test_util.temp_module(name, pkg=True) as pkg_dir: