diff options
author | socal-nerdtastic <37753609+socal-nerdtastic@users.noreply.github.com> | 2023-01-28 13:18:04 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-28 13:18:04 (GMT) |
commit | 666c0840dcac9941fa41ec619fef8d45cd849a0b (patch) | |
tree | b589696b7c9dbe4dc38343414872d5924a2c5f4d /Doc/using | |
parent | 84483aacc005e6a535355cb68342fa0801d956cc (diff) | |
download | cpython-666c0840dcac9941fa41ec619fef8d45cd849a0b.zip cpython-666c0840dcac9941fa41ec619fef8d45cd849a0b.tar.gz cpython-666c0840dcac9941fa41ec619fef8d45cd849a0b.tar.bz2 |
Fix trivial typo in shebang example (GH-101385)
The example was showing the current version, but should be pinned to 3.7 to match the example command.
Diffstat (limited to 'Doc/using')
-rw-r--r-- | Doc/using/windows.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/using/windows.rst b/Doc/using/windows.rst index b2a0214..bd09666 100644 --- a/Doc/using/windows.rst +++ b/Doc/using/windows.rst @@ -797,7 +797,7 @@ is printed. Now try changing the first line to be: Re-executing the command should now print the latest Python 3.x information. As with the above command-line examples, you can specify a more explicit version qualifier. Assuming you have Python 3.7 installed, try changing -the first line to ``#! python3.7`` and you should find the |version| +the first line to ``#! python3.7`` and you should find the 3.7 version information printed. Note that unlike interactive use, a bare "python" will use the latest |