Issue #26638: Fix links to some CLI options
Disable inappropriate links to Python interpreter options. Also make CLI section label in timeit less ambiguous.
This commit is contained in:
parent
87d9de6354
commit
fb45216da8
|
@ -314,12 +314,12 @@ This module provides the following functions.
|
||||||
|
|
||||||
.. function:: gen_preprocess_options(macros, include_dirs)
|
.. function:: gen_preprocess_options(macros, include_dirs)
|
||||||
|
|
||||||
Generate C pre-processor options (:option:`-D`, :option:`-U`, :option:`-I`) as
|
Generate C pre-processor options (:option:`-D`, :option:`!-U`, :option:`!-I`) as
|
||||||
used by at least two types of compilers: the typical Unix compiler and Visual
|
used by at least two types of compilers: the typical Unix compiler and Visual
|
||||||
C++. *macros* is the usual thing, a list of 1- or 2-tuples, where ``(name,)``
|
C++. *macros* is the usual thing, a list of 1- or 2-tuples, where ``(name,)``
|
||||||
means undefine (:option:`-U`) macro *name*, and ``(name, value)`` means define
|
means undefine (:option:`!-U`) macro *name*, and ``(name, value)`` means define
|
||||||
(:option:`-D`) macro *name* to *value*. *include_dirs* is just a list of
|
(:option:`-D`) macro *name* to *value*. *include_dirs* is just a list of
|
||||||
directory names to be added to the header file search path (:option:`-I`).
|
directory names to be added to the header file search path (:option:`!-I`).
|
||||||
Returns a list of command-line options suitable for either Unix compilers or
|
Returns a list of command-line options suitable for either Unix compilers or
|
||||||
Visual C++.
|
Visual C++.
|
||||||
|
|
||||||
|
@ -794,7 +794,7 @@ This module provides the :class:`UnixCCompiler` class, a subclass of
|
||||||
|
|
||||||
* library search directories specified with :option:`-Ldir`
|
* library search directories specified with :option:`-Ldir`
|
||||||
|
|
||||||
* compile handled by :program:`cc` (or similar) executable with :option:`-c`
|
* compile handled by :program:`cc` (or similar) executable with :option:`!-c`
|
||||||
option: compiles :file:`.c` to :file:`.o`
|
option: compiles :file:`.c` to :file:`.o`
|
||||||
|
|
||||||
* link static library handled by :program:`ar` command (possibly with
|
* link static library handled by :program:`ar` command (possibly with
|
||||||
|
|
|
@ -51,7 +51,7 @@ option values can be split across multiple lines simply by indenting the
|
||||||
continuation lines.
|
continuation lines.
|
||||||
|
|
||||||
You can find out the list of options supported by a particular command with the
|
You can find out the list of options supported by a particular command with the
|
||||||
universal :option:`--help` option, e.g. ::
|
universal :option:`!--help` option, e.g. ::
|
||||||
|
|
||||||
> python setup.py --help build_ext
|
> python setup.py --help build_ext
|
||||||
[...]
|
[...]
|
||||||
|
|
|
@ -862,12 +862,12 @@ config file will apply. (Or if other commands that derive values from it are
|
||||||
run, they will use the values in the config file.)
|
run, they will use the values in the config file.)
|
||||||
|
|
||||||
You can find out the complete list of options for any command using the
|
You can find out the complete list of options for any command using the
|
||||||
:option:`--help` option, e.g.::
|
:option:`!--help` option, e.g.::
|
||||||
|
|
||||||
python setup.py build --help
|
python setup.py build --help
|
||||||
|
|
||||||
and you can find out the complete list of global options by using
|
and you can find out the complete list of global options by using
|
||||||
:option:`--help` without a command::
|
:option:`!--help` without a command::
|
||||||
|
|
||||||
python setup.py --help
|
python setup.py --help
|
||||||
|
|
||||||
|
@ -924,7 +924,7 @@ Let's examine each of the fields in turn.
|
||||||
to be in Objective C.
|
to be in Objective C.
|
||||||
|
|
||||||
* *cpparg* is an argument for the C preprocessor, and is anything starting with
|
* *cpparg* is an argument for the C preprocessor, and is anything starting with
|
||||||
:option:`-I`, :option:`-D`, :option:`-U` or :option:`-C`.
|
:option:`!-I`, :option:`-D`, :option:`!-U` or :option:`-C`.
|
||||||
|
|
||||||
* *library* is anything ending in :file:`.a` or beginning with :option:`-l` or
|
* *library* is anything ending in :file:`.a` or beginning with :option:`-l` or
|
||||||
:option:`-L`.
|
:option:`-L`.
|
||||||
|
|
|
@ -56,7 +56,7 @@ Comments and exact indentation are preserved throughout the translation process.
|
||||||
|
|
||||||
By default, 2to3 runs a set of :ref:`predefined fixers <2to3-fixers>`. The
|
By default, 2to3 runs a set of :ref:`predefined fixers <2to3-fixers>`. The
|
||||||
:option:`-l` flag lists all available fixers. An explicit set of fixers to run
|
:option:`-l` flag lists all available fixers. An explicit set of fixers to run
|
||||||
can be given with :option:`-f`. Likewise the :option:`-x` explicitly disables a
|
can be given with :option:`-f`. Likewise the :option:`!-x` explicitly disables a
|
||||||
fixer. The following example runs only the ``imports`` and ``has_key`` fixers::
|
fixer. The following example runs only the ``imports`` and ``has_key`` fixers::
|
||||||
|
|
||||||
$ 2to3 -f imports -f has_key example.py
|
$ 2to3 -f imports -f has_key example.py
|
||||||
|
@ -78,12 +78,12 @@ but 2to3 cannot fix automatically. In this case, 2to3 will print a warning
|
||||||
beneath the diff for a file. You should address the warning in order to have
|
beneath the diff for a file. You should address the warning in order to have
|
||||||
compliant 3.x code.
|
compliant 3.x code.
|
||||||
|
|
||||||
2to3 can also refactor doctests. To enable this mode, use the :option:`-d`
|
2to3 can also refactor doctests. To enable this mode, use the :option:`!-d`
|
||||||
flag. Note that *only* doctests will be refactored. This also doesn't require
|
flag. Note that *only* doctests will be refactored. This also doesn't require
|
||||||
the module to be valid Python. For example, doctest like examples in a reST
|
the module to be valid Python. For example, doctest like examples in a reST
|
||||||
document could also be refactored with this option.
|
document could also be refactored with this option.
|
||||||
|
|
||||||
The :option:`-v` option enables output of more information on the translation
|
The :option:`!-v` option enables output of more information on the translation
|
||||||
process.
|
process.
|
||||||
|
|
||||||
Since some print statements can be parsed as function calls or statements, 2to3
|
Since some print statements can be parsed as function calls or statements, 2to3
|
||||||
|
@ -102,14 +102,14 @@ when not overwriting the input files.
|
||||||
.. versionadded:: 2.7.3
|
.. versionadded:: 2.7.3
|
||||||
The :option:`-o` option was added.
|
The :option:`-o` option was added.
|
||||||
|
|
||||||
The :option:`-W` or :option:`--write-unchanged-files` flag tells 2to3 to always
|
The :option:`!-W` or :option:`--write-unchanged-files` flag tells 2to3 to always
|
||||||
write output files even if no changes were required to the file. This is most
|
write output files even if no changes were required to the file. This is most
|
||||||
useful with :option:`-o` so that an entire Python source tree is copied with
|
useful with :option:`-o` so that an entire Python source tree is copied with
|
||||||
translation from one directory to another.
|
translation from one directory to another.
|
||||||
This option implies the :option:`-w` flag as it would not make sense otherwise.
|
This option implies the :option:`-w` flag as it would not make sense otherwise.
|
||||||
|
|
||||||
.. versionadded:: 2.7.3
|
.. versionadded:: 2.7.3
|
||||||
The :option:`-W` flag was added.
|
The :option:`!-W` flag was added.
|
||||||
|
|
||||||
The :option:`--add-suffix` option specifies a string to append to all output
|
The :option:`--add-suffix` option specifies a string to append to all output
|
||||||
filenames. The :option:`-n` flag is required when specifying this as backups
|
filenames. The :option:`-n` flag is required when specifying this as backups
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
This module provides a simple way to time small bits of Python code. It has both
|
This module provides a simple way to time small bits of Python code. It has both
|
||||||
a :ref:`command-line-interface` as well as a :ref:`callable <python-interface>`
|
a :ref:`timeit-command-line-interface` as well as a :ref:`callable <python-interface>`
|
||||||
one. It avoids a number of common traps for measuring execution times.
|
one. It avoids a number of common traps for measuring execution times.
|
||||||
See also Tim Peters' introduction to the "Algorithms" chapter in the *Python
|
See also Tim Peters' introduction to the "Algorithms" chapter in the *Python
|
||||||
Cookbook*, published by O'Reilly.
|
Cookbook*, published by O'Reilly.
|
||||||
|
@ -25,7 +25,7 @@ Cookbook*, published by O'Reilly.
|
||||||
Basic Examples
|
Basic Examples
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
The following example shows how the :ref:`command-line-interface`
|
The following example shows how the :ref:`timeit-command-line-interface`
|
||||||
can be used to compare three different expressions:
|
can be used to compare three different expressions:
|
||||||
|
|
||||||
.. code-block:: sh
|
.. code-block:: sh
|
||||||
|
@ -170,7 +170,7 @@ The module defines three convenience functions and a public class:
|
||||||
where the traceback is sent; it defaults to :data:`sys.stderr`.
|
where the traceback is sent; it defaults to :data:`sys.stderr`.
|
||||||
|
|
||||||
|
|
||||||
.. _command-line-interface:
|
.. _timeit-command-line-interface:
|
||||||
|
|
||||||
Command-Line Interface
|
Command-Line Interface
|
||||||
----------------------
|
----------------------
|
||||||
|
|
|
@ -256,7 +256,7 @@ Updating Code For New Versions of Python
|
||||||
|
|
||||||
Warnings that are only of interest to the developer are ignored by default. As
|
Warnings that are only of interest to the developer are ignored by default. As
|
||||||
such you should make sure to test your code with typically ignored warnings
|
such you should make sure to test your code with typically ignored warnings
|
||||||
made visible. You can do this from the command-line by passing :option:`-Wd`
|
made visible. You can do this from the command-line by passing :option:`-Wd <-W>`
|
||||||
to the interpreter (this is shorthand for :option:`-W default`). This enables
|
to the interpreter (this is shorthand for :option:`-W default`). This enables
|
||||||
default handling for all warnings, including those that are ignored by default.
|
default handling for all warnings, including those that are ignored by default.
|
||||||
To change what action is taken for encountered warnings you simply change what
|
To change what action is taken for encountered warnings you simply change what
|
||||||
|
|
|
@ -759,7 +759,7 @@ Here are the changes 2.2 introduces:
|
||||||
|
|
||||||
* Python 2.2 supports some command-line arguments for testing whether code will
|
* Python 2.2 supports some command-line arguments for testing whether code will
|
||||||
works with the changed division semantics. Running python with :option:`-Q
|
works with the changed division semantics. Running python with :option:`-Q
|
||||||
warn` will cause a warning to be issued whenever division is applied to two
|
warn <-Q>` will cause a warning to be issued whenever division is applied to two
|
||||||
integers. You can use this to find code that's affected by the change and fix
|
integers. You can use this to find code that's affected by the change and fix
|
||||||
it. By default, Python 2.2 will simply perform classic division without a
|
it. By default, Python 2.2 will simply perform classic division without a
|
||||||
warning; the warning will be turned on by default in Python 2.3.
|
warning; the warning will be turned on by default in Python 2.3.
|
||||||
|
|
|
@ -1057,7 +1057,7 @@ Here are all of the changes that Python 2.3 makes to the core Python language.
|
||||||
* A new warning, :exc:`PendingDeprecationWarning` was added to indicate features
|
* A new warning, :exc:`PendingDeprecationWarning` was added to indicate features
|
||||||
which are in the process of being deprecated. The warning will *not* be printed
|
which are in the process of being deprecated. The warning will *not* be printed
|
||||||
by default. To check for use of features that will be deprecated in the future,
|
by default. To check for use of features that will be deprecated in the future,
|
||||||
supply :option:`-Walways::PendingDeprecationWarning::` on the command line or
|
supply :option:`-Walways::PendingDeprecationWarning:: <-W>` on the command line or
|
||||||
use :func:`warnings.filterwarnings`.
|
use :func:`warnings.filterwarnings`.
|
||||||
|
|
||||||
* The process of deprecating string-based exceptions, as in ``raise "Error
|
* The process of deprecating string-based exceptions, as in ``raise "Error
|
||||||
|
@ -1734,7 +1734,7 @@ The optparse Module
|
||||||
The :mod:`getopt` module provides simple parsing of command-line arguments. The
|
The :mod:`getopt` module provides simple parsing of command-line arguments. The
|
||||||
new :mod:`optparse` module (originally named Optik) provides more elaborate
|
new :mod:`optparse` module (originally named Optik) provides more elaborate
|
||||||
command-line parsing that follows the Unix conventions, automatically creates
|
command-line parsing that follows the Unix conventions, automatically creates
|
||||||
the output for :option:`--help`, and can perform different actions for different
|
the output for :option:`!--help`, and can perform different actions for different
|
||||||
options.
|
options.
|
||||||
|
|
||||||
You start by creating an instance of :class:`OptionParser` and telling it what
|
You start by creating an instance of :class:`OptionParser` and telling it what
|
||||||
|
@ -1973,7 +1973,7 @@ Some of the more notable changes are:
|
||||||
the Python program as part of its execution.
|
the Python program as part of its execution.
|
||||||
|
|
||||||
* The :file:`regrtest.py` script now provides a way to allow "all resources
|
* The :file:`regrtest.py` script now provides a way to allow "all resources
|
||||||
except *foo*." A resource name passed to the :option:`-u` option can now be
|
except *foo*." A resource name passed to the :option:`!-u` option can now be
|
||||||
prefixed with a hyphen (``'-'``) to mean "remove this resource." For example,
|
prefixed with a hyphen (``'-'``) to mean "remove this resource." For example,
|
||||||
the option '``-uall,-bsddb``' could be used to enable the use of all resources
|
the option '``-uall,-bsddb``' could be used to enable the use of all resources
|
||||||
except ``bsddb``.
|
except ``bsddb``.
|
||||||
|
|
|
@ -1483,8 +1483,8 @@ Some of the changes to Python's build process and to the C API are:
|
||||||
intended as an aid to people developing the Python core. Providing
|
intended as an aid to people developing the Python core. Providing
|
||||||
:option:`----enable-profiling` to the :program:`configure` script will let you
|
:option:`----enable-profiling` to the :program:`configure` script will let you
|
||||||
profile the interpreter with :program:`gprof`, and providing the
|
profile the interpreter with :program:`gprof`, and providing the
|
||||||
:option:`----with-tsc` switch enables profiling using the Pentium's Time-Stamp-
|
:option:`--with-tsc` switch enables profiling using the Pentium's Time-Stamp-
|
||||||
Counter register. Note that the :option:`----with-tsc` switch is slightly
|
Counter register. Note that the :option:`--with-tsc` switch is slightly
|
||||||
misnamed, because the profiling feature also works on the PowerPC platform,
|
misnamed, because the profiling feature also works on the PowerPC platform,
|
||||||
though that processor architecture doesn't call that register "the TSC
|
though that processor architecture doesn't call that register "the TSC
|
||||||
register". (Contributed by Jeremy Hylton.)
|
register". (Contributed by Jeremy Hylton.)
|
||||||
|
|
|
@ -1095,7 +1095,7 @@ Here are all of the changes that Python 2.5 makes to the core Python language.
|
||||||
log all the paths searched. In Python 2.5, a new :exc:`ImportWarning` warning is
|
log all the paths searched. In Python 2.5, a new :exc:`ImportWarning` warning is
|
||||||
triggered when an import would have picked up a directory as a package but no
|
triggered when an import would have picked up a directory as a package but no
|
||||||
:file:`__init__.py` was found. This warning is silently ignored by default;
|
:file:`__init__.py` was found. This warning is silently ignored by default;
|
||||||
provide the :option:`-Wd` option when running the Python executable to display
|
provide the :option:`-Wd <-W>` option when running the Python executable to display
|
||||||
the warning message. (Implemented by Thomas Wouters.)
|
the warning message. (Implemented by Thomas Wouters.)
|
||||||
|
|
||||||
* The list of base classes in a class definition can now be empty. As an
|
* The list of base classes in a class definition can now be empty. As an
|
||||||
|
@ -1126,7 +1126,7 @@ or ``exit()`` will now exit the interpreter as they expect. (Implemented by
|
||||||
Georg Brandl.)
|
Georg Brandl.)
|
||||||
|
|
||||||
The Python executable now accepts the standard long options :option:`--help`
|
The Python executable now accepts the standard long options :option:`--help`
|
||||||
and :option:`--version`; on Windows, it also accepts the :option:`/?` option
|
and :option:`--version`; on Windows, it also accepts the :option:`/? <-?>` option
|
||||||
for displaying a help message. (Implemented by Georg Brandl.)
|
for displaying a help message. (Implemented by Georg Brandl.)
|
||||||
|
|
||||||
.. ======================================================================
|
.. ======================================================================
|
||||||
|
@ -1640,7 +1640,7 @@ complete list of changes, or look through the SVN logs for all the details.
|
||||||
* The :mod:`webbrowser` module received a number of enhancements. It's now
|
* The :mod:`webbrowser` module received a number of enhancements. It's now
|
||||||
usable as a script with ``python -m webbrowser``, taking a URL as the argument;
|
usable as a script with ``python -m webbrowser``, taking a URL as the argument;
|
||||||
there are a number of switches to control the behaviour (:option:`-n` for a new
|
there are a number of switches to control the behaviour (:option:`-n` for a new
|
||||||
browser window, :option:`-t` for a new tab). New module-level functions,
|
browser window, :option:`!-t` for a new tab). New module-level functions,
|
||||||
:func:`open_new` and :func:`open_new_tab`, were added to support this. The
|
:func:`open_new` and :func:`open_new_tab`, were added to support this. The
|
||||||
module's :func:`open` function supports an additional feature, an *autoraise*
|
module's :func:`open` function supports an additional feature, an *autoraise*
|
||||||
parameter that signals whether to raise the open window when possible. A number
|
parameter that signals whether to raise the open window when possible. A number
|
||||||
|
|
|
@ -1820,12 +1820,12 @@ Consult the :mod:`unittest` module documentation for more details.
|
||||||
|
|
||||||
The :func:`~unittest.main` function supports some other new options:
|
The :func:`~unittest.main` function supports some other new options:
|
||||||
|
|
||||||
* :option:`-b` or :option:`--buffer` will buffer the standard output
|
* :option:`-b <unittest -b>` or :option:`--buffer` will buffer the standard output
|
||||||
and standard error streams during each test. If the test passes,
|
and standard error streams during each test. If the test passes,
|
||||||
any resulting output will be discarded; on failure, the buffered
|
any resulting output will be discarded; on failure, the buffered
|
||||||
output will be displayed.
|
output will be displayed.
|
||||||
|
|
||||||
* :option:`-c` or :option:`--catch` will cause the control-C interrupt
|
* :option:`-c <unittest -c>` or :option:`--catch` will cause the control-C interrupt
|
||||||
to be handled more gracefully. Instead of interrupting the test
|
to be handled more gracefully. Instead of interrupting the test
|
||||||
process immediately, the currently running test will be completed
|
process immediately, the currently running test will be completed
|
||||||
and then the partial results up to the interruption will be reported.
|
and then the partial results up to the interruption will be reported.
|
||||||
|
@ -1839,7 +1839,7 @@ The :func:`~unittest.main` function supports some other new options:
|
||||||
:func:`~unittest.removeHandler` decorator that can be used to mark tests that
|
:func:`~unittest.removeHandler` decorator that can be used to mark tests that
|
||||||
should have the control-C handling disabled.
|
should have the control-C handling disabled.
|
||||||
|
|
||||||
* :option:`-f` or :option:`--failfast` makes
|
* :option:`-f <unittest -f>` or :option:`--failfast` makes
|
||||||
test execution stop immediately when a test fails instead of
|
test execution stop immediately when a test fails instead of
|
||||||
continuing to execute further tests. (Suggested by Cliff Dyer and
|
continuing to execute further tests. (Suggested by Cliff Dyer and
|
||||||
implemented by Michael Foord; :issue:`8074`.)
|
implemented by Michael Foord; :issue:`8074`.)
|
||||||
|
@ -2381,7 +2381,7 @@ Other Changes and Fixes
|
||||||
takes an integer specifying how many tests run in parallel. This
|
takes an integer specifying how many tests run in parallel. This
|
||||||
allows reducing the total runtime on multi-core machines.
|
allows reducing the total runtime on multi-core machines.
|
||||||
This option is compatible with several other options, including the
|
This option is compatible with several other options, including the
|
||||||
:option:`-R` switch which is known to produce long runtimes.
|
:option:`!-R` switch which is known to produce long runtimes.
|
||||||
(Added by Antoine Pitrou, :issue:`6152`.) This can also be used
|
(Added by Antoine Pitrou, :issue:`6152`.) This can also be used
|
||||||
with a new :option:`-F` switch that runs selected tests in a loop
|
with a new :option:`-F` switch that runs selected tests in a loop
|
||||||
until they fail. (Added by Antoine Pitrou; :issue:`7312`.)
|
until they fail. (Added by Antoine Pitrou; :issue:`7312`.)
|
||||||
|
|
Loading…
Reference in New Issue