/external/python/cpython2/Modules/ |
D | main.c | 182 PyObject *runpy, *runmodule, *runargs, *result; in RunModule() local 183 runpy = PyImport_ImportModule("runpy"); in RunModule() 184 if (runpy == NULL) { in RunModule() 188 runmodule = PyObject_GetAttrString(runpy, "_run_module_as_main"); in RunModule() 191 Py_DECREF(runpy); in RunModule() 198 Py_DECREF(runpy); in RunModule() 206 Py_DECREF(runpy); in RunModule()
|
/external/python/cpython3/Modules/ |
D | main.c | 261 PyObject *module, *runpy, *runmodule, *runargs, *result; in pymain_run_module() local 265 runpy = PyImport_ImportModule("runpy"); in pymain_run_module() 266 if (runpy == NULL) { in pymain_run_module() 270 runmodule = PyObject_GetAttrString(runpy, "_run_module_as_main"); in pymain_run_module() 273 Py_DECREF(runpy); in pymain_run_module() 279 Py_DECREF(runpy); in pymain_run_module() 287 Py_DECREF(runpy); in pymain_run_module() 297 Py_DECREF(runpy); in pymain_run_module()
|
/external/fonttools/Lib/fontTools/ |
D | __main__.py | 29 import runpy 30 runpy.run_module(mod, run_name='__main__')
|
/external/python/cpython3/Lib/test/test_tools/ |
D | test_fixcid.py | 5 import runpy 90 runpy.run_path(script, run_name="__main__")
|
/external/python/cpython3/Lib/multiprocessing/ |
D | spawn.py | 13 import runpy 258 main_content = runpy.run_module(mod_name, 287 main_content = runpy.run_path(main_path,
|
/external/python/cpython3/Doc/library/ |
D | runpy.rst | 1 :mod:`runpy` --- Locating and executing Python modules 4 .. module:: runpy 9 **Source code:** :source:`Lib/runpy.py` 13 The :mod:`runpy` module is used to locate and run Python modules without 23 guaranteed to work correctly after a :mod:`runpy` function has returned. 27 The :mod:`runpy` module provides two functions:
|
D | modules.rst | 18 runpy.rst
|
D | tracemalloc.rst | 173 File "/usr/lib/python3.4/runpy.py", line 73 175 File "/usr/lib/python3.4/runpy.py", line 160
|
D | __main__.rst | 264 See :mod:`runpy` for more details on the :option:`-m` flag to the
|
/external/python/cpython2/Doc/library/ |
D | runpy.rst | 1 :mod:`runpy` --- Locating and executing Python modules 4 .. module:: runpy 11 **Source code:** :source:`Lib/runpy.py` 15 The :mod:`runpy` module is used to locate and run Python modules without 20 The :mod:`runpy` module provides two functions:
|
D | modules.rst | 22 runpy.rst
|
/external/python/cpython3/Lib/ |
D | cProfile.py | 133 import runpy 164 'run_module': runpy.run_module,
|
D | profile.py | 581 import runpy 584 'run_module': runpy.run_module,
|
D | pdb.py | 1547 import runpy 1548 mod_name, mod_spec, code = runpy._get_module_details(module_name) 1701 import runpy 1703 runpy._get_module_details(mainpyfile)
|
D | trace.py | 703 import runpy 705 mod_name, mod_spec, code = runpy._get_module_details(module_name)
|
/external/python/cpython2/Lib/test/ |
D | test_tools.py | 8 import runpy 442 runpy.run_path(script, run_name="__main__")
|
D | test_runpy.py | 13 from runpy import _run_code, _run_module_code, run_module, run_path
|
/external/python/setuptools/docs/userguide/ |
D | entry_point.rst | 44 `runpy <https://docs.python.org/3/library/runpy.html>`_ module:
|
/external/python/cpython3/Lib/test/ |
D | test_runpy.py | 21 import runpy 22 from runpy import _run_code, _run_module_code, run_module, run_path 58 "runpy": runpy,
|
/external/python/pyfakefs/pyfakefs/tests/ |
D | fake_filesystem_unittest_test.py | 25 import runpy 764 retval += runpy.run_path(config) 766 retval += runpy.run_module(config)
|
/external/python/cpython2/Misc/ |
D | maintainers.rst | 191 runpy ncoghlan
|
/external/python/cpython2/Doc/using/ |
D | cmdline.rst | 108 :func:`runpy.run_module` 134 :func:`runpy.run_path`
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.9.0a5.rst | 505 The ``ensurepip`` module now invokes ``pip`` via the ``runpy`` module. Hence 655 Fix runpy.run_path() when using pathlike objects
|
D | 3.5.2rc1.rst | 1458 initialization fails, a proper traceback is now reported. The "runpy" 1469 Also in runpy and the "-m" option, omit the irrelevant message ". . . is a
|
/external/python/cpython3/Doc/using/ |
D | cmdline.rst | 118 :func:`runpy.run_module` 170 :func:`runpy.run_path`
|