diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-07-16 21:43:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-16 21:43:40 (GMT) |
commit | b11a77668c8e2fd5dec4d59ef78ce4733b4a8e3a (patch) | |
tree | bd7681a2dfe4a3c04f09f2cfafc472528c145550 | |
parent | 66130290846ec9438d80d99a4d1f7754e73c3078 (diff) | |
download | cpython-b11a77668c8e2fd5dec4d59ef78ce4733b4a8e3a.zip cpython-b11a77668c8e2fd5dec4d59ef78ce4733b4a8e3a.tar.gz cpython-b11a77668c8e2fd5dec4d59ef78ce4733b4a8e3a.tar.bz2 |
[3.13] gh-83648: Use versionadded in 'deprecated' description (GH-121878)
(cherry picked from commit 4e35dd607b0f32657341e6c4f583d14964ee1699)
Authored-by: Zachary Ware <zach@python.org>
-rw-r--r-- | Doc/library/argparse.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst index 0367c83..aa1341c 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -1466,7 +1466,7 @@ printed to standard error when the argument is used:: snake.py: warning: option '--legs' is deprecated Namespace(legs=4) -.. versionchanged:: 3.13 +.. versionadded:: 3.13 Action classes |