diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-11-17 01:11:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-17 01:11:46 (GMT) |
commit | 94bac1c407dc1ab8fe0d59a8faf180538e513de7 (patch) | |
tree | 8ab403a89edcb55843a37fcbe4e7695b0dcaa626 | |
parent | 8e37445044ffcbeedabe495bbc413b2f50b5b713 (diff) | |
download | cpython-94bac1c407dc1ab8fe0d59a8faf180538e513de7.zip cpython-94bac1c407dc1ab8fe0d59a8faf180538e513de7.tar.gz cpython-94bac1c407dc1ab8fe0d59a8faf180538e513de7.tar.bz2 |
[3.12] gh-112165: Fix typo in `__main__.py` (GH-112183) (#112184)
gh-112165: Fix typo in `__main__.py` (GH-112183)
Change '[2]' to '[1]' to get second argument.
(cherry picked from commit 8cd70eefc7f3363cfa0d43f34522c3072fa9e160)
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
-rw-r--r-- | Doc/library/__main__.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/__main__.rst b/Doc/library/__main__.rst index 24a32b3..c999253 100644 --- a/Doc/library/__main__.rst +++ b/Doc/library/__main__.rst @@ -227,7 +227,7 @@ students:: import sys from .student import search_students - student_name = sys.argv[2] if len(sys.argv) >= 2 else '' + student_name = sys.argv[1] if len(sys.argv) >= 2 else '' print(f'Found student: {search_students(student_name)}') Note that ``from .student import search_students`` is an example of a relative |