|
|
|
@ -154,9 +154,9 @@ REGISTRY = { |
|
|
|
"SysVersion": VER_DOT, |
|
|
|
"Version": "{}.{}.{}".format(VER_MAJOR, VER_MINOR, VER_MICRO), |
|
|
|
"InstallPath": { |
|
|
|
"": "[{AppVPackageRoot}]", |
|
|
|
"ExecutablePath": "[{AppVPackageRoot}]\\python.exe", |
|
|
|
"WindowedExecutablePath": "[{AppVPackageRoot}]\\pythonw.exe", |
|
|
|
"": "[{{AppVPackageRoot}}]", |
|
|
|
"ExecutablePath": "[{{AppVPackageRoot}}]\\python{}.exe".format(VER_DOT), |
|
|
|
"WindowedExecutablePath": "[{{AppVPackageRoot}}]\\pythonw{}.exe".format(VER_DOT), |
|
|
|
}, |
|
|
|
"Help": { |
|
|
|
"Main Python Documentation": { |
|
|
|
@ -395,7 +395,7 @@ def get_appxmanifest(ns): |
|
|
|
ns, |
|
|
|
xml, |
|
|
|
"Python", |
|
|
|
"python", |
|
|
|
"python{}".format(VER_DOT), |
|
|
|
["python", "python{}".format(VER_MAJOR), "python{}".format(VER_DOT)], |
|
|
|
PYTHON_VE_DATA, |
|
|
|
"console", |
|
|
|
@ -406,7 +406,7 @@ def get_appxmanifest(ns): |
|
|
|
ns, |
|
|
|
xml, |
|
|
|
"PythonW", |
|
|
|
"pythonw", |
|
|
|
"pythonw{}".format(VER_DOT), |
|
|
|
["pythonw", "pythonw{}".format(VER_MAJOR), "pythonw{}".format(VER_DOT)], |
|
|
|
PYTHONW_VE_DATA, |
|
|
|
"windows", |
|
|
|
@ -418,7 +418,7 @@ def get_appxmanifest(ns): |
|
|
|
ns, |
|
|
|
xml, |
|
|
|
"Pip", |
|
|
|
"pip", |
|
|
|
"pip{}".format(VER_DOT), |
|
|
|
["pip", "pip{}".format(VER_MAJOR), "pip{}".format(VER_DOT)], |
|
|
|
PIP_VE_DATA, |
|
|
|
"console", |
|
|
|
@ -430,7 +430,7 @@ def get_appxmanifest(ns): |
|
|
|
ns, |
|
|
|
xml, |
|
|
|
"Idle", |
|
|
|
"idle", |
|
|
|
"idle{}".format(VER_DOT), |
|
|
|
["idle", "idle{}".format(VER_MAJOR), "idle{}".format(VER_DOT)], |
|
|
|
IDLE_VE_DATA, |
|
|
|
"windows", |
|
|
|
|