summaryrefslogtreecommitdiffstats
path: root/PC/python_uwp.cpp
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@python.org>2019-06-14 21:20:16 (GMT)
committerGitHub <noreply@github.com>2019-06-14 21:20:16 (GMT)
commitf78e66c3c9cd3a65cedba8d35f8e715e0535d8bf (patch)
treeb3e2518679fe351215dff488ee9300d4c42dda3e /PC/python_uwp.cpp
parent322281e7caa161d5b9c0f3fbf79efd15299f3594 (diff)
downloadcpython-f78e66c3c9cd3a65cedba8d35f8e715e0535d8bf.zip
cpython-f78e66c3c9cd3a65cedba8d35f8e715e0535d8bf.tar.gz
cpython-f78e66c3c9cd3a65cedba8d35f8e715e0535d8bf.tar.bz2
Implement Windows release builds in Azure Pipelines (GH-14065)
Includes backported fixes from GH-14091
Diffstat (limited to 'PC/python_uwp.cpp')
-rw-r--r--PC/python_uwp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/PC/python_uwp.cpp b/PC/python_uwp.cpp
index 5c8caa6..dd1edde 100644
--- a/PC/python_uwp.cpp
+++ b/PC/python_uwp.cpp
@@ -182,9 +182,9 @@ wmain(int argc, wchar_t **argv)
if (*p++ == L'\\') {
if (wcsnicmp(p, L"pip", 3) == 0) {
moduleName = L"pip";
+ /* No longer required when pip 19.1 is added */
_wputenv_s(L"PIP_USER", L"true");
- }
- else if (wcsnicmp(p, L"idle", 4) == 0) {
+ } else if (wcsnicmp(p, L"idle", 4) == 0) {
moduleName = L"idlelib";
}
}