https://github.com/python/cpython/commit/d26fef174a27c1ea9899723c4edb6b1751f8b26d
commit: d26fef174a27c1ea9899723c4edb6b1751f8b26d
branch: 3.14
author: Miss Islington (bot) <[email protected]>
committer: savannahostrowski <[email protected]>
date: 2026-04-14T10:42:10-07:00
summary:

[3.14] gh-72406: Document argument ordering in argparse help output (GH-148534) 
(#148562)

gh-72406: Document argument ordering in argparse help output (GH-148534)
(cherry picked from commit 4286227308ee8dafc867062df4cad73af2a84696)

Co-authored-by: Santi Hernandez <[email protected]>
Co-authored-by: Savannah Ostrowski <[email protected]>

files:
M Doc/library/argparse.rst

diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst
index bc36a2933aa314..67d5cd87101b42 100644
--- a/Doc/library/argparse.rst
+++ b/Doc/library/argparse.rst
@@ -1996,6 +1996,9 @@ Argument groups
    Note that any arguments not in your user-defined groups will end up back
    in the usual "positional arguments" and "optional arguments" sections.
 
+   Within each argument group, arguments are displayed in help output in the
+   order in which they are added.
+
    .. deprecated-removed:: 3.11 3.14
       Calling :meth:`add_argument_group` on an argument group now raises an
       exception. This nesting was never supported, often failed to work

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]

Reply via email to