Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85a4847 commit 5284f80Copy full SHA for 5284f80
2 files changed
Misc/NEWS
@@ -734,6 +734,12 @@ IDLE
734
- Issue #17532: Always include Options menu for IDLE on OS X.
735
Patch by Guilherme Simões.
736
737
+Windows
738
+-------
739
+
740
+- Issue #18569: The installer now adds .py to the PATHEXT variable when extensions
741
+ are registered. Patch by Paul Moore.
742
743
Build
744
-----
745
Tools/msi/msi.py
@@ -1270,6 +1270,10 @@ def add_registry(db):
1270
"{60254CA5-953B-11CF-8C96-00AA00B8708C}", "REGISTRY.def"),
1271
])
1272
1273
+ # PATHEXT
1274
+ add_data(db, "Environment",
1275
+ [("PathExtAddition", "=-*PathExt", "[~];.PY", "REGISTRY.def")])
1276
1277
# Registry keys
1278
prefix = r"Software\%sPython\PythonCore\%s" % (testprefix, short_version)
1279
add_data(db, "Registry",
0 commit comments