summaryrefslogtreecommitdiff
path: root/docs/source
diff options
context:
space:
mode:
authorKonrad Delong <konryd@gmail.com>2010-08-12 20:06:15 +0200
committerKonrad Delong <konryd@gmail.com>2010-08-12 20:06:15 +0200
commit9ece8deb0cb1378ffdadbfdaff3efb1466c44366 (patch)
tree7496bae53c6ebd51331a98c81f02ec35feea6168 /docs/source
parent6b45f40e33ea859b03adc52b89e46d5c14846551 (diff)
downloaddisutils2-9ece8deb0cb1378ffdadbfdaff3efb1466c44366.tar.gz
replaced e.g. with "for example"
Diffstat (limited to 'docs/source')
-rw-r--r--docs/source/distutils/newcommands.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/source/distutils/newcommands.rst b/docs/source/distutils/newcommands.rst
index 672ef3a..746c6fe 100644
--- a/docs/source/distutils/newcommands.rst
+++ b/docs/source/distutils/newcommands.rst
@@ -37,14 +37,14 @@ aggregate a collection of tests to be run under a common test harness.
By default, tests will be run in the "verbose" mode of the ``unittest``
package's text test runner, but you can get the "quiet" mode (just dots) if
you supply the ``-q`` or ``--quiet`` option, either as a global option to
-the setup script (e.g. ``setup.py -q test``) or as an option for the ``test``
-command itself (e.g. ``setup.py test -q``). There is one other option
+the setup script (for example ``setup.py -q test``) or as an option for the ``test``
+command itself (for example ``setup.py test -q``). There is one other option
available:
``--test-suite=NAME, -s NAME``
Specify the test suite (or module, class, or method) to be run
- (e.g. ``some_module.test_suite``). The default for this option can be
- set by giving a ``test_suite`` argument to the ``setup()`` function, e.g.::
+ (for example ``some_module.test_suite``). The default for this option can be
+ set by giving a ``test_suite`` argument to the ``setup()`` function, for example::
setup(
# ...
@@ -113,7 +113,7 @@ must already be registered with PyPI, using the distutils ``register``
command -- just like the ``upload`` command.
Assuming there is an ``Example`` project with documentation in the
-subdirectory ``docs``, e.g.::
+subdirectory ``docs``, for example::
Example/
|-- example.py
@@ -134,7 +134,7 @@ command::
python setup.py upload_docs --upload-dir=docs/build/html
As with any other ``setuptools`` based command, you can define useful
-defaults in the ``setup.cfg`` of your Python project, e.g.:
+defaults in the ``setup.cfg`` of your Python project, for example:
.. code-block:: ini