Home
last modified time | relevance | path

Searched refs:platlibdir (Results 1 – 25 of 26) sorted by relevance

12

/third_party/python/Lib/distutils/tests/
Dtest_install.py70 platlibdir = os.path.join(destination, sys.platlibdir, "python")
71 check_path(cmd.install_platlib, platlibdir)
/third_party/python/Modules/
Dgetpath.c140 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/
Dinitconfig.c626 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()
Dsysmodule.c2965 COPY_WSTR("platlibdir", config->platlibdir); in _PySys_UpdateConfig()
/third_party/python/Lib/test/
Dtest_embed.py407 '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.py215 platlibdir="platlibdir")
Dtest_site.py286 if sys.platlibdir != "lib":
288 wanted = os.path.join('xoxo', sys.platlibdir,
Dtest_sys.py531 self.assertIsInstance(sys.platlibdir, str)
/third_party/python/Include/cpython/
Dinitconfig.h182 wchar_t *platlibdir; member
/third_party/python/Lib/
Dsite.py364 libdirs = [sys.platlibdir]
365 if sys.platlibdir != "lib":
Dsysconfig.py601 _CONFIG_VARS['platlibdir'] = sys.platlibdir
/third_party/python/Misc/NEWS.d/
D3.10.0.rst61 ``platlib`` doesn't use :data:`sys.platlibdir`. Patch by Victor Stinner.
D3.9.0a5.rst990 Add ``--with-platlibdir`` option to the configure script: name of the
992 :attr:`sys.platlibdir` attribute. It is used to build the path of
D3.10.0rc2.rst322 :data:`sys.platlibdir`.
D3.10.0a1.rst728 :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.
D3.10.1.rst1196 ``platlib`` doesn't use :data:`sys.platlibdir`. Patch by Victor Stinner.
/third_party/python/Lib/distutils/
Dsysconfig.py333 libdir = sys.platlibdir
/third_party/python/Lib/distutils/command/
Dinstall.py319 'platlibdir': sys.platlibdir,
/third_party/python/Doc/c-api/
Dinit_config.rst830 .. 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/
Dconfigure.rst97 .. cmdoption:: --with-platlibdir=DIRNAME
103 See :data:`sys.platlibdir`.
Dcmdline.rst569 If this is set to a non-empty string, it overrides the :data:`sys.platlibdir`
/third_party/python/Programs/
D_testembed.c565 status = PyConfig_SetBytesString(&config, &config.platlibdir, "my_platlibdir"); in test_init_from_config()
/third_party/python/Doc/whatsnew/
D3.9.rst680 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/
Dconfigure.ac4860 # 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/
Dsys.rst1194 .. data:: platlibdir
1209 :data:`sys.platlibdir`): Third-party modules

12