https://github.com/python/cpython/commit/84694020832e2752a4dc96dfe2f726c114a8b47b commit: 84694020832e2752a4dc96dfe2f726c114a8b47b branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2026-03-15T14:08:23Z summary:
[3.13] gh-69223: Document that add_argument() returns an Action object (GH-145538) (#145596) Co-authored-by: Andrew Barnes <[email protected]> files: M Doc/library/argparse.rst diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst index d8c7776ee41f4e..c1df9c25450cca 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -613,6 +613,8 @@ The add_argument() method * deprecated_ - Whether or not use of the argument is deprecated. + The method returns an :class:`Action` object representing the argument. + The following sections describe how each of these are used. _______________________________________________ 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]
