diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2018-10-31 00:26:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-31 00:26:06 (GMT) |
commit | 3f819ca138db6945ee4271bf13e42db9f9b3b1e4 (patch) | |
tree | 7eab13b4f9da0c8936d423cd633594cf83ba870f /Doc/install | |
parent | 68f323715e6627c550d1e8ffed7e36f1bb4aa42b (diff) | |
download | cpython-3f819ca138db6945ee4271bf13e42db9f9b3b1e4.zip cpython-3f819ca138db6945ee4271bf13e42db9f9b3b1e4.tar.gz cpython-3f819ca138db6945ee4271bf13e42db9f9b3b1e4.tar.bz2 |
bpo-35110: Fix unintentional spaces around hyphens and dashes. (GH-10231)
Diffstat (limited to 'Doc/install')
-rw-r--r-- | Doc/install/index.rst | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Doc/install/index.rst b/Doc/install/index.rst index 92cdf2f..f6a8cd6 100644 --- a/Doc/install/index.rst +++ b/Doc/install/index.rst @@ -554,10 +554,10 @@ C headers ``--install-headers`` These override options can be relative, absolute, or explicitly defined in terms of one of the installation base directories. -(There are two installation base directories, and they are normally the same--- -they only differ when you use the Unix "prefix scheme" and supply different -``--prefix`` and ``--exec-prefix`` options; using ``--install-lib`` will -override values computed or given for ``--install-purelib`` and +(There are two installation base directories, and they are normally the +same---they only differ when you use the Unix "prefix scheme" and supply +different ``--prefix`` and ``--exec-prefix`` options; using ``--install-lib`` +will override values computed or given for ``--install-purelib`` and ``--install-platlib``, and is recommended for schemes that don't make a difference between Python and extension modules.) @@ -584,10 +584,10 @@ in this case.) If you maintain Python on Windows, you might want third-party modules to live in a subdirectory of :file:`{prefix}`, rather than right in :file:`{prefix}` -itself. This is almost as easy as customizing the script installation directory ----you just have to remember that there are two types of modules to worry about, -Python and extension modules, which can conveniently be both controlled by one -option:: +itself. This is almost as easy as customizing the script installation +directory---you just have to remember that there are two types of modules +to worry about, Python and extension modules, which can conveniently be both +controlled by one option:: python setup.py install --install-lib=Site |