Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

GH-124478: Cleanup argparse documentation#124877

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
JelleZijlstra merged 24 commits intopython:mainfromsavannahostrowski:gh-124478
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
Show all changes
24 commits
Select commitHold shift + click to select a range
484ca7f
Progress on paring things down
savannahostrowskiOct 1, 2024
47a411a
More deduping
savannahostrowskiOct 1, 2024
9845e44
Move details about upgrading from optparse to a separate doc
savannahostrowskiOct 1, 2024
5aae0a0
Updates
savannahostrowskiOct 2, 2024
e275d46
resolve merge conflict
savannahostrowskiOct 2, 2024
5f14ee3
remove table
savannahostrowskiOct 2, 2024
3c055d4
Apply suggestions from code review
savannahostrowskiOct 2, 2024
1cb7d1f
Move optparse to howto
savannahostrowskiOct 2, 2024
bfb28af
Appease linter
savannahostrowskiOct 2, 2024
936c808
Address PR comments
savannahostrowskiOct 2, 2024
a5baef9
Address PR comments
savannahostrowskiOct 2, 2024
782a601
Fix indentation
savannahostrowskiOct 2, 2024
903c702
Fix indentation
savannahostrowskiOct 2, 2024
db7adf3
Fix indentation
savannahostrowskiOct 2, 2024
52f7bbe
Update TOC
savannahostrowskiOct 2, 2024
300ed64
Update argparse-optparse.rst
savannahostrowskiOct 2, 2024
3273f03
Update argparse.rst
savannahostrowskiOct 2, 2024
f4395d1
Address feedback
savannahostrowskiOct 3, 2024
537684b
Run pre-commit
savannahostrowskiOct 3, 2024
f1e5e71
Remove formatting on params
savannahostrowskiOct 3, 2024
743bfb5
Merge branch 'main' into gh-124478
savannahostrowskiOct 3, 2024
d9f261c
Merge branch 'main' into gh-124478
savannahostrowskiOct 7, 2024
1c46505
Formatting for parameters
savannahostrowskiOct 7, 2024
8fcdb3a
Merge branch 'main' into gh-124478
savannahostrowskiOct 8, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 55 additions & 0 deletionsDoc/howto/argparse-optparse.rst
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
.. currentmodule:: argparse

.. _upgrading-optparse-code:

==========================
Upgrading optparse code
==========================

Originally, the :mod:`argparse` module had attempted to maintain compatibility
with :mod:`optparse`. However, :mod:`optparse` was difficult to extend
transparently, particularly with the changes required to support
``nargs=`` specifiers and better usage messages. When most everything in
:mod:`optparse` had either been copy-pasted over or monkey-patched, it no
longer seemed practical to try to maintain the backwards compatibility.

The :mod:`argparse` module improves on the :mod:`optparse`
module in a number of ways including:

* Handling positional arguments.
* Supporting subcommands.
* Allowing alternative option prefixes like ``+`` and ``/``.
* Handling zero-or-more and one-or-more style arguments.
* Producing more informative usage messages.
* Providing a much simpler interface for custom ``type`` and ``action``.

A partial upgrade path from :mod:`optparse` to :mod:`argparse`:

* Replace all :meth:`optparse.OptionParser.add_option` calls with
:meth:`ArgumentParser.add_argument` calls.

* Replace ``(options, args) = parser.parse_args()`` with ``args =
parser.parse_args()`` and add additional :meth:`ArgumentParser.add_argument`
calls for the positional arguments. Keep in mind that what was previously
called ``options``, now in the :mod:`argparse` context is called ``args``.

* Replace :meth:`optparse.OptionParser.disable_interspersed_args`
by using :meth:`~ArgumentParser.parse_intermixed_args` instead of
:meth:`~ArgumentParser.parse_args`.

* Replace callback actions and the ``callback_*`` keyword arguments with
``type`` or ``action`` arguments.

* Replace string names for ``type`` keyword arguments with the corresponding
type objects (e.g. int, float, complex, etc).

* Replace :class:`optparse.Values` with :class:`Namespace` and
:exc:`optparse.OptionError` and :exc:`optparse.OptionValueError` with
:exc:`ArgumentError`.

* Replace strings with implicit arguments such as ``%default`` or ``%prog`` with
the standard Python syntax to use dictionaries to format strings, that is,
``%(default)s`` and ``%(prog)s``.

* Replace the OptionParser constructor ``version`` argument with a call to
``parser.add_argument('--version', action='version', version='<the version>')``.
Loading

[8]ページ先頭

©2009-2025 Movatter.jp