diff options
author | Steve Dower <steve.dower@python.org> | 2021-11-26 23:08:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-26 23:08:20 (GMT) |
commit | 4841e694ee1686f8c933ddfcb8c854915867ce17 (patch) | |
tree | a1ad49e7e5d7b3e0431e2eeb7e1ff7952e6eab79 /Misc/NEWS.d/next | |
parent | 94daf39b2f7e9b50e7ae7a16caeef804f8e37ae3 (diff) | |
download | cpython-4841e694ee1686f8c933ddfcb8c854915867ce17.zip cpython-4841e694ee1686f8c933ddfcb8c854915867ce17.tar.gz cpython-4841e694ee1686f8c933ddfcb8c854915867ce17.tar.bz2 |
bpo-45901: Fixes argument passing when invoking .py files directly through the Store package (GH-29799)
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r-- | Misc/NEWS.d/next/Windows/2021-11-26-18-17-41.bpo-45901.c5IBqM.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Windows/2021-11-26-18-17-41.bpo-45901.c5IBqM.rst b/Misc/NEWS.d/next/Windows/2021-11-26-18-17-41.bpo-45901.c5IBqM.rst new file mode 100644 index 0000000..2cb872b --- /dev/null +++ b/Misc/NEWS.d/next/Windows/2021-11-26-18-17-41.bpo-45901.c5IBqM.rst @@ -0,0 +1,4 @@ +When installed through the Microsoft Store and set as the default app for +:file:`*.py` files, command line arguments will now be passed to Python when +invoking a script without explicitly launching Python (that is, ``script.py +args`` rather than ``python script.py args``). |