/external/python/cpython3/Lib/distutils/tests/ |
D | test_install.py | 61 platlibdir = os.path.join(destination, sys.platlibdir, "python") 62 check_path(cmd.install_platlib, platlibdir)
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.9.0b3.rst | 20 ``lib-dynload/`` directory when ``./configure --with-platlibdir`` is used.
|
D | 3.9.0b2.rst | 58 Allow overriding :data:`sys.platlibdir` via a new :envvar:`PYTHONPLATLIBDIR`
|
D | 3.9.0b4.rst | 142 :c:member:`PyConfig.platlibdir` in account.
|
D | 3.9.0a5.rst | 990 Add ``--with-platlibdir`` option to the configure script: name of the 992 :attr:`sys.platlibdir` attribute. It is used to build the path of
|
/external/python/cpython3/Modules/ |
D | getpath.c | 141 const wchar_t *platlibdir; member 815 wchar_t *lib_dynload = joinpath2(calculate->platlibdir, in calculate_exec_prefix() 1297 wchar_t *path = joinpath2(calculate->platlibdir, in calculate_zip_path() 1436 calculate->platlibdir = config->platlibdir; in calculate_init() 1469 calculate->lib_python = joinpath2(config->platlibdir, pyversion); in calculate_init()
|
/external/python/cpython3/Python/ |
D | initconfig.c | 595 CLEAR(config->platlibdir); in PyConfig_Clear() 834 COPY_WSTR_ATTR(platlibdir); in _PyConfig_Copy() 938 SET_ITEM_WSTR(platlibdir); in config_as_dict() 1350 if(config->platlibdir == NULL) { in config_read_env_vars() 1351 status = CONFIG_GET_ENV_DUP(config, &config->platlibdir, in config_read_env_vars() 1753 if(config->platlibdir == NULL) { in config_read() 1754 status = CONFIG_SET_BYTES_STR(config, &config->platlibdir, PLATLIBDIR, in config_read() 2590 assert(config->platlibdir != NULL); in PyConfig_Read() 2741 DUMP_SYS(platlibdir); in _Py_DumpPathConfig()
|
D | sysmodule.c | 2925 SET_SYS_FROM_WSTR("platlibdir", config->platlibdir); in _PySys_InitMain()
|
/external/python/cpython3/Lib/test/ |
D | test_embed.py | 384 'platlibdir': sys.platlibdir, 1109 os.path.join(prefix, sys.platlibdir, 1111 os.path.join(prefix, sys.platlibdir, 1113 os.path.join(exec_prefix, sys.platlibdir, 1230 sys.platlibdir,
|
D | test_site.py | 271 if sys.platlibdir != "lib": 273 wanted = os.path.join('xoxo', sys.platlibdir,
|
D | test_sys.py | 489 self.assertIsInstance(sys.platlibdir, str)
|
/external/python/cpython3/Include/cpython/ |
D | initconfig.h | 391 wchar_t *platlibdir; /* sys.platlibdir */ member
|
/external/python/cpython3/Lib/ |
D | site.py | 337 libdirs = [sys.platlibdir] 338 if sys.platlibdir != "lib":
|
D | sysconfig.py | 540 _CONFIG_VARS['platlibdir'] = sys.platlibdir
|
/external/python/cpython3/Lib/distutils/command/ |
D | install.py | 301 'platlibdir': sys.platlibdir,
|
/external/python/cpython3/Lib/distutils/ |
D | sysconfig.py | 151 libdir = sys.platlibdir
|
/external/python/cpython3/Doc/c-api/ |
D | init_config.rst | 440 .. c:member:: wchar_t* platlibdir 442 :data:`sys.platlibdir`: platform library directory name, set at configure time 443 by ``--with-platlibdir``, overrideable by the ``PYTHONPLATLIBDIR`` 896 * :c:member:`PyConfig.platlibdir`
|
/external/python/cpython3/Programs/ |
D | _testembed.c | 552 status = PyConfig_SetBytesString(&config, &config.platlibdir, "my_platlibdir"); in test_init_from_config()
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.9.rst | 672 Added a new :attr:`sys.platlibdir` attribute: name of the platform-specific 1190 * Added ``--with-platlibdir`` option to the ``configure`` script: name of the 1191 platform-specific library directory, stored in the new :attr:`sys.platlibdir` 1192 attribute. See :attr:`sys.platlibdir` attribute for more information.
|
/external/python/cpython3/ |
D | configure.ac | 4810 # Check for --with-platlibdir 4814 AC_MSG_CHECKING(for --with-platlibdir) 4815 AC_ARG_WITH(platlibdir, optwith 4816 AS_HELP_STRING([--with-platlibdir=DIRNAME], 4820 # --with-platlibdir 4821 # --with-platlibdir= 4822 # --without-platlibdir
|
/external/python/cpython3/Doc/library/ |
D | sys.rst | 1156 .. data:: platlibdir 1171 :data:`sys.platlibdir`): Third-party modules
|
/external/python/cpython3/Doc/using/ |
D | cmdline.rst | 543 If this is set to a non-empty string, it overrides the :data:`sys.platlibdir`
|