Home
last modified time | relevance | path

Searched refs:base_exec_prefix (Results 1 – 19 of 19) sorted by relevance

/external/python/cpython3/Include/
Dpystate.h73 wchar_t *base_exec_prefix; /* sys.base_exec_prefix */ member
103 PyObject *base_exec_prefix; /* sys.base_exec_prefix str, can be NULL */ member
/external/python/cpython3/Modules/
Dmain.c2308 if (config->base_exec_prefix == NULL) { in config_init_path_config()
2309 config->base_exec_prefix = _PyMem_RawWcsdup(config->exec_prefix); in config_init_path_config()
2310 if (config->base_exec_prefix == NULL) { in config_init_path_config()
2465 CLEAR(config->base_exec_prefix); in _PyCoreConfig_Clear()
2530 COPY_STR_ATTR(base_exec_prefix); in _PyCoreConfig_Copy()
2608 SET_ITEM_WSTR(base_exec_prefix); in _PyCoreConfig_AsDict()
2636 Py_CLEAR(config->base_exec_prefix); in _PyMainInterpreterConfig_Clear()
2690 COPY_OBJ_ATTR(base_exec_prefix); in _PyMainInterpreterConfig_Copy()
2742 SET_ITEM_OBJ(base_exec_prefix); in _PyMainInterpreterConfig_AsDict()
2803 COPY_WSTR(base_exec_prefix); in _PyMainInterpreterConfig_Read()
/external/python/cpython3/Lib/distutils/command/
Dbuild_ext.py159 if sys.exec_prefix != sys.base_exec_prefix:
194 if sys.base_exec_prefix != sys.prefix: # Issue 16116
195 self.library_dirs.append(os.path.join(sys.base_exec_prefix, 'libs'))
/external/python/cpython3/Lib/test/
Dtest_cmd.py229 tracer=trace.Trace(ignoredirs=[sys.base_prefix, sys.base_exec_prefix,],
Dtest_doctest.py3018 tracer = trace.Trace(ignoredirs=[sys.base_prefix, sys.base_exec_prefix,],
Dtest_sysconfig.py277 adapt = sys.base_prefix != sys.base_exec_prefix
Dtest_trace.py325 tracer = trace.Trace(ignoredirs=[sys.base_prefix, sys.base_exec_prefix,
Dtest_venv.py128 self.assertEqual(sys.base_exec_prefix, sys.exec_prefix)
Dtest_sys.py419 self.assertIsInstance(sys.base_exec_prefix, str)
/external/python/cpython3/Lib/distutils/
Dsysconfig.py23 BASE_EXEC_PREFIX = os.path.normpath(sys.base_exec_prefix)
/external/python/cpython3/Lib/
Dsysconfig.py95 _BASE_EXEC_PREFIX = os.path.normpath(sys.base_exec_prefix)
Dtrace.py664 _exec_prefix = os.path.join(sys.base_exec_prefix, *rel_path)
Dpydoc.py402 basedir=os.path.join(sys.base_exec_prefix, "lib",
/external/python/cpython3/Doc/library/
Dvenv.rst64 :attr:`sys.base_exec_prefix` point to the non-virtual environment Python
68 :attr:`sys.base_exec_prefix` (they all point to a non-virtual environment
Dsite.rst46 sys.base_exec_prefix will always be the "real" prefixes of the Python
Dsys.rst34 .. data:: base_exec_prefix
42 :data:`base_exec_prefix` will remain pointing to the base Python
55 :data:`base_exec_prefix` will remain pointing to the base Python
278 :data:`base_exec_prefix`.
Dzipapp.rst365 >>> cc.add_library_dir(os.path.join(sys.base_exec_prefix, 'libs'))
/external/python/cpython3/Python/
Dsysmodule.c2475 assert(config->base_exec_prefix != NULL); in _PySys_EndInit()
2482 SET_SYS_FROM_STRING_BORROW("base_exec_prefix", config->base_exec_prefix); in _PySys_EndInit()
/external/python/cpython3/Doc/tutorial/
Dmodules.rst313 'base_exec_prefix', 'base_prefix', 'builtin_module_names', 'byteorder',