Home
last modified time | relevance | path

Searched refs:run_module (Results 1 – 15 of 15) sorted by relevance

/third_party/python/Lib/test/
Dtest_runpy.py22 from runpy import _run_code, _run_module_code, run_module, run_path
191 run_module(mod_name)
213 self.assertEqual(run_module("runpy")["__name__"], "runpy")
311 return run_module(mod_name, init_globals, alter_sys=alter_sys)
352 return run_module(pkg_name, init_globals, alter_sys=alter_sys)
409 d1 = run_module(mod_name, run_name=run_name) # Read from source
423 d2 = run_module(mod_name, run_name=run_name) # Read from bytecode
464 run_module(mod_name)
470 run_module(mod_name + ".submodule")
482 run_module(mod_name)
[all …]
/third_party/python/Modules/
Dmain.c86 || config->run_module != NULL); in config_run_code()
580 else if (config->run_module) { in pymain_run_python()
581 *exitcode = pymain_run_module(config->run_module, 1); in pymain_run_python()
/third_party/python/Python/
Dinitconfig.c635 assert(!(config->run_command != NULL && config->run_module != NULL)); in config_check_consistency()
678 CLEAR(config->run_module); in PyConfig_Clear()
933 COPY_WSTR_ATTR(run_module); in _PyConfig_Copy()
1033 SET_ITEM_WSTR(run_module); in _PyConfig_AsDict()
1316 GET_WSTR_OPT(run_module); in _PyConfig_FromDict()
2276 if (config->run_module == NULL) { in config_parse_cmdline()
2277 config->run_module = _PyMem_RawWcsdup(_PyOS_optarg); in config_parse_cmdline()
2278 if (config->run_module == NULL) { in config_parse_cmdline()
2398 if (config->run_command == NULL && config->run_module == NULL in config_parse_cmdline()
2409 if (config->run_command != NULL || config->run_module != NULL) { in config_parse_cmdline()
[all …]
/third_party/python/Doc/library/
Drunpy.rst30 .. function:: run_module(mod_name, init_globals=None, run_name=None, alter_sys=False)
50 overridden by :func:`run_module`.
148 Note that, unlike :func:`run_module`, the alterations made to :mod:`sys`
/third_party/python/Include/cpython/
Dinitconfig.h197 wchar_t *run_module; member
/third_party/python/PC/
Dpython_uwp.cpp217 status = PyConfig_SetString(&config, &config.run_module, moduleName); in wmain()
/third_party/python/Lib/
DcProfile.py164 'run_module': runpy.run_module,
Drunpy.py199 def run_module(mod_name, init_globals=None, function
Dprofile.py584 'run_module': runpy.run_module,
/third_party/python/Lib/multiprocessing/
Dspawn.py258 main_content = runpy.run_module(mod_name,
/third_party/python/Doc/c-api/
Dinit_config.rst1012 .. c:member:: wchar_t* run_module
1379 * If :c:member:`~PyConfig.run_module` is set, prepend the current directory
1408 (:c:member:`PyConfig.run_module`) specified on the command line or in the
/third_party/python/Doc/using/
Dcmdline.rst115 .. audit-event:: cpython.run_module module-name cmdoption-m
118 :func:`runpy.run_module`
/third_party/python/Misc/NEWS.d/
D3.6.0b1.rst381 Warn if a submodule argument to "python -m" or runpy.run_module() is found
D3.5.3rc1.rst329 Warn if a submodule argument to "python -m" or runpy.run_module() is found
/third_party/python/Misc/
DHISTORY18435 - PEP 338: -m command line switch now delegates to runpy.run_module
18937 - PEP 338: new module runpy defines a run_module function to support