aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSandro Mani <manisandro@gmail.com>2020-06-08 17:28:11 +0200
committerGitHub <noreply@github.com>2020-06-08 17:28:11 +0200
commit8f023a2f664f902a3d0b7a6f64d63afc0d1c15ae (patch)
tree8aa9027476167eca69c0e17ba8712f624bdb8e15 /Programs
parentbpo-29882: Add _Py_popcount32() function (GH-20518) (diff)
downloadcpython-8f023a2f664f902a3d0b7a6f64d63afc0d1c15ae.tar.gz
cpython-8f023a2f664f902a3d0b7a6f64d63afc0d1c15ae.tar.bz2
cpython-8f023a2f664f902a3d0b7a6f64d63afc0d1c15ae.zip
bpo-40854: Allow overriding sys.platlibdir via PYTHONPLATLIBDIR env-var (GH-20605)
Diffstat (limited to 'Programs')
-rw-r--r--Programs/_testembed.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/Programs/_testembed.c b/Programs/_testembed.c
index 5c83678f65..11524dfbc0 100644
--- a/Programs/_testembed.c
+++ b/Programs/_testembed.c
@@ -548,6 +548,13 @@ static int test_init_from_config(void)
/* FIXME: test home */
/* FIXME: test path config: module_search_path .. dll_path */
+ putenv("PYTHONPLATLIBDIR=env_platlibdir");
+ status = PyConfig_SetBytesString(&config, &config.platlibdir, "my_platlibdir");
+ if (PyStatus_Exception(status)) {
+ PyConfig_Clear(&config);
+ Py_ExitStatusException(status);
+ }
+
putenv("PYTHONVERBOSE=0");
Py_VerboseFlag = 0;
config.verbose = 1;
@@ -668,6 +675,7 @@ static void set_most_env_vars(void)
putenv("PYTHONFAULTHANDLER=1");
putenv("PYTHONIOENCODING=iso8859-1:replace");
putenv("PYTHONOLDPARSER=1");
+ putenv("PYTHONPLATLIBDIR=env_platlibdir");
}