/third_party/python/Lib/distutils/tests/ |
D | test_install.py | 70 platlibdir = os.path.join(destination, sys.platlibdir, "python") 71 check_path(cmd.install_platlib, platlibdir)
|
/third_party/python/Modules/ |
D | getpath.c | 140 const wchar_t *platlibdir; member 814 wchar_t *lib_dynload = joinpath2(calculate->platlibdir, in calculate_exec_prefix() 1297 wchar_t *path = joinpath2(calculate->platlibdir, in calculate_zip_path() 1431 calculate->platlibdir = config->platlibdir; in calculate_init() 1464 calculate->lib_python = joinpath2(config->platlibdir, pyversion); in calculate_init()
|
/third_party/python/Python/ |
D | initconfig.c | 626 assert(config->platlibdir != NULL); in config_check_consistency() 671 CLEAR(config->platlibdir); in PyConfig_Clear() 909 COPY_WSTR_ATTR(platlibdir); in _PyConfig_Copy() 1012 SET_ITEM_WSTR(platlibdir); in _PyConfig_AsDict() 1302 GET_WSTR(platlibdir); in _PyConfig_FromDict() 1698 if(config->platlibdir == NULL) { in config_read_env_vars() 1699 status = CONFIG_GET_ENV_DUP(config, &config->platlibdir, in config_read_env_vars() 2077 if(config->platlibdir == NULL) { in config_read() 2078 status = CONFIG_SET_BYTES_STR(config, &config->platlibdir, PLATLIBDIR, in config_read() 3035 DUMP_SYS(platlibdir); in _Py_DumpPathConfig()
|
D | sysmodule.c | 2965 COPY_WSTR("platlibdir", config->platlibdir); in _PySys_UpdateConfig()
|
/third_party/python/Lib/test/ |
D | test_embed.py | 407 'platlibdir': sys.platlibdir, 1179 os.path.join(prefix, sys.platlibdir, 1181 os.path.join(prefix, sys.platlibdir, 1183 os.path.join(exec_prefix, sys.platlibdir, 1299 sys.platlibdir,
|
D | _test_embed_set_config.py | 215 platlibdir="platlibdir")
|
D | test_site.py | 286 if sys.platlibdir != "lib": 288 wanted = os.path.join('xoxo', sys.platlibdir,
|
D | test_sys.py | 531 self.assertIsInstance(sys.platlibdir, str)
|
/third_party/python/Include/cpython/ |
D | initconfig.h | 182 wchar_t *platlibdir; member
|
/third_party/python/Lib/ |
D | site.py | 364 libdirs = [sys.platlibdir] 365 if sys.platlibdir != "lib":
|
D | sysconfig.py | 601 _CONFIG_VARS['platlibdir'] = sys.platlibdir
|
/third_party/python/Misc/NEWS.d/ |
D | 3.10.0.rst | 61 ``platlib`` doesn't use :data:`sys.platlibdir`. Patch by Victor Stinner.
|
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
|
D | 3.10.0rc2.rst | 322 :data:`sys.platlibdir`.
|
D | 3.10.0a1.rst | 728 :c:member:`PyConfig.platlibdir` in account. 834 Allow overriding :data:`sys.platlibdir` via a new :envvar:`PYTHONPLATLIBDIR` 2904 ``lib-dynload/`` directory when ``./configure --with-platlibdir`` is used.
|
D | 3.10.1.rst | 1196 ``platlib`` doesn't use :data:`sys.platlibdir`. Patch by Victor Stinner.
|
/third_party/python/Lib/distutils/ |
D | sysconfig.py | 333 libdir = sys.platlibdir
|
/third_party/python/Lib/distutils/command/ |
D | install.py | 319 'platlibdir': sys.platlibdir,
|
/third_party/python/Doc/c-api/ |
D | init_config.rst | 830 .. c:member:: wchar_t* platlibdir 832 Platform library directory name: :data:`sys.platlibdir`. 837 :option:`configure --with-platlibdir option <--with-platlibdir>` 1329 * :c:member:`PyConfig.platlibdir`
|
/third_party/python/Doc/using/ |
D | configure.rst | 97 .. cmdoption:: --with-platlibdir=DIRNAME 103 See :data:`sys.platlibdir`.
|
D | cmdline.rst | 569 If this is set to a non-empty string, it overrides the :data:`sys.platlibdir`
|
/third_party/python/Programs/ |
D | _testembed.c | 565 status = PyConfig_SetBytesString(&config, &config.platlibdir, "my_platlibdir"); in test_init_from_config()
|
/third_party/python/Doc/whatsnew/ |
D | 3.9.rst | 680 Added a new :attr:`sys.platlibdir` attribute: name of the platform-specific 1213 * Added ``--with-platlibdir`` option to the ``configure`` script: name of the 1214 platform-specific library directory, stored in the new :attr:`sys.platlibdir` 1215 attribute. See :attr:`sys.platlibdir` attribute for more information.
|
/third_party/python/ |
D | configure.ac | 4860 # Check for --with-platlibdir 4864 AC_MSG_CHECKING(for --with-platlibdir) 4865 AC_ARG_WITH(platlibdir, optwith 4866 AS_HELP_STRING([--with-platlibdir=DIRNAME], 4870 # --with-platlibdir 4871 # --with-platlibdir= 4872 # --without-platlibdir
|
/third_party/python/Doc/library/ |
D | sys.rst | 1194 .. data:: platlibdir 1209 :data:`sys.platlibdir`): Third-party modules
|