HomeSort by relevance Sort by last modified time
    Searched refs:runpy (Results 1 - 8 of 8) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/
main.c 167 PyObject *runpy, *runmodule, *runargs, *result; local
168 runpy = PyImport_ImportModule("runpy");
169 if (runpy == NULL) {
170 fprintf(stderr, "Could not import runpy module\n");
173 runmodule = PyObject_GetAttrString(runpy, "_run_module_as_main");
175 fprintf(stderr, "Could not access runpy._run_module_as_main\n");
176 Py_DECREF(runpy);
182 "Could not create arguments for runpy._run_module_as_main\n");
183 Py_DECREF(runpy);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/
main.c 167 PyObject *runpy, *runmodule, *runargs, *result; local
168 runpy = PyImport_ImportModule("runpy");
169 if (runpy == NULL) {
170 fprintf(stderr, "Could not import runpy module\n");
173 runmodule = PyObject_GetAttrString(runpy, "_run_module_as_main");
175 fprintf(stderr, "Could not access runpy._run_module_as_main\n");
176 Py_DECREF(runpy);
182 "Could not create arguments for runpy._run_module_as_main\n");
183 Py_DECREF(runpy);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
main.c 162 PyObject *runpy, *runmodule, *runargs, *result; local
163 runpy = PyImport_ImportModule("runpy");
164 if (runpy == NULL) {
165 fprintf(stderr, "Could not import runpy module\n");
168 runmodule = PyObject_GetAttrString(runpy, "_run_module_as_main");
170 fprintf(stderr, "Could not access runpy._run_module_as_main\n");
171 Py_DECREF(runpy);
177 "Could not create arguments for runpy._run_module_as_main\n");
178 Py_DECREF(runpy);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_runpy.py 1 # Test the runpy module
13 from runpy import _run_code, _run_module_code, run_module, run_path
22 """Unit tests for runpy._run_code and runpy._run_module_code"""
38 "import runpy\n"
39 "nested = runpy._run_module_code('x=1\\n', mod_name='<run>')\n"
84 """Unit tests for runpy.run_module"""
107 run_module("runpy")
282 """Unit tests for runpy.run_path"""
389 source = ("import runpy\n"
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_runpy.py 1 # Test the runpy module
13 from runpy import _run_code, _run_module_code, run_module, run_path
22 """Unit tests for runpy._run_code and runpy._run_module_code"""
38 "import runpy\n"
39 "nested = runpy._run_module_code('x=1\\n', mod_name='<run>')\n"
84 """Unit tests for runpy.run_module"""
107 run_module("runpy")
285 """Unit tests for runpy.run_path"""
392 source = ("import runpy\n
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_runpy.py 1 # Test the runpy module
13 from runpy import _run_code, _run_module_code, run_module, run_path
22 """Unit tests for runpy._run_code and runpy._run_module_code"""
38 "import runpy\n"
39 "nested = runpy._run_module_code('x=1\\n', mod_name='<run>')\n"
84 """Unit tests for runpy.run_module"""
107 run_module("runpy")
285 """Unit tests for runpy.run_path"""
392 source = ("import runpy\n
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_runpy.py 1 # Test the runpy module
13 from runpy import _run_code, _run_module_code, run_module, run_path
22 """Unit tests for runpy._run_code and runpy._run_module_code"""
38 "import runpy\n"
39 "nested = runpy._run_module_code('x=1\\n', mod_name='<run>')\n"
84 """Unit tests for runpy.run_module"""
107 run_module("runpy")
285 """Unit tests for runpy.run_path"""
392 source = ("import runpy\n
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_runpy.py 1 # Test the runpy module
13 from runpy import _run_code, _run_module_code, run_module, run_path
22 """Unit tests for runpy._run_code and runpy._run_module_code"""
38 "import runpy\n"
39 "nested = runpy._run_module_code('x=1\\n', mod_name='<run>')\n"
84 """Unit tests for runpy.run_module"""
107 run_module("runpy")
285 """Unit tests for runpy.run_path"""
392 source = ("import runpy\n
    [all...]

Completed in 353 milliseconds