diff options
author | Victor Stinner <vstinner@python.org> | 2023-07-07 22:03:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-07 22:03:51 (GMT) |
commit | d524b6f61f0b9fe4c359373185bf08bab423a218 (patch) | |
tree | d868532ba80951fd3d664cecbc1ffe0d22da7f9b /Doc/library/optparse.rst | |
parent | 1fb9bd222bfe96cdf8a82701a3192e45d0811555 (diff) | |
download | cpython-d524b6f61f0b9fe4c359373185bf08bab423a218.zip cpython-d524b6f61f0b9fe4c359373185bf08bab423a218.tar.gz cpython-d524b6f61f0b9fe4c359373185bf08bab423a218.tar.bz2 |
gh-106535: Document PEP 387 Soft Deprecation (#106536)
Mark the optparse module as soft deprecated.
Diffstat (limited to 'Doc/library/optparse.rst')
-rw-r--r-- | Doc/library/optparse.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/optparse.rst b/Doc/library/optparse.rst index 0cff381..01177a0 100644 --- a/Doc/library/optparse.rst +++ b/Doc/library/optparse.rst @@ -11,8 +11,9 @@ **Source code:** :source:`Lib/optparse.py` .. deprecated:: 3.2 - The :mod:`optparse` module is deprecated and will not be developed further; - development will continue with the :mod:`argparse` module. + The :mod:`optparse` module is :term:`soft deprecated` and will not be + developed further; development will continue with the :mod:`argparse` + module. -------------- |