Searched refs:run_module (Results 1 – 15 of 15) sorted by relevance
/third_party/python/Lib/test/ |
D | test_runpy.py | 22 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/ |
D | main.c | 86 || 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/ |
D | initconfig.c | 635 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/ |
D | runpy.rst | 30 .. 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/ |
D | initconfig.h | 197 wchar_t *run_module; member
|
/third_party/python/PC/ |
D | python_uwp.cpp | 217 status = PyConfig_SetString(&config, &config.run_module, moduleName); in wmain()
|
/third_party/python/Lib/ |
D | cProfile.py | 164 'run_module': runpy.run_module,
|
D | runpy.py | 199 def run_module(mod_name, init_globals=None, function
|
D | profile.py | 584 'run_module': runpy.run_module,
|
/third_party/python/Lib/multiprocessing/ |
D | spawn.py | 258 main_content = runpy.run_module(mod_name,
|
/third_party/python/Doc/c-api/ |
D | init_config.rst | 1012 .. 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/ |
D | cmdline.rst | 115 .. audit-event:: cpython.run_module module-name cmdoption-m 118 :func:`runpy.run_module`
|
/third_party/python/Misc/NEWS.d/ |
D | 3.6.0b1.rst | 381 Warn if a submodule argument to "python -m" or runpy.run_module() is found
|
D | 3.5.3rc1.rst | 329 Warn if a submodule argument to "python -m" or runpy.run_module() is found
|
/third_party/python/Misc/ |
D | HISTORY | 18435 - 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
|