Skip to content

Commit 511747b

Browse files
bpo-35110: Fix yet few spaces before dashes. (GH-10255)
1 parent c9a6168 commit 511747b

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Doc/distutils/configfile.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ edit is a cheap and easy way to solicit it. Configuration files also let you
1313
provide default values for any command option, which the installer can then
1414
override either on the command-line or by editing the config file.
1515

16-
The setup configuration file is a useful middle-ground between the setup script
17-
---which, ideally, would be opaque to installers [#]_---and the command-line to
16+
The setup configuration file is a useful middle-ground between the setup
17+
script---which, ideally, would be opaque to installers [#]_---and the command-line to
1818
the setup script, which is outside of your control and entirely up to the
1919
installer. In fact, :file:`setup.cfg` (and any other Distutils configuration
2020
files present on the target system) are processed after the contents of the

Doc/library/optparse.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -379,8 +379,8 @@ types is covered in section :ref:`optparse-extending-optparse`.
379379
Handling boolean (flag) options
380380
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
381381

382-
Flag options---set a variable to true or false when a particular option is seen
383-
---are quite common. :mod:`optparse` supports them with two separate actions,
382+
Flag options---set a variable to true or false when a particular option is
383+
seen---are quite common. :mod:`optparse` supports them with two separate actions,
384384
``store_true`` and ``store_false``. For example, you might have a ``verbose``
385385
flag that is turned on with ``-v`` and off with ``-q``::
386386

0 commit comments

Comments
 (0)