@@ -33,9 +33,9 @@ Contributing to CPython
3333-----------------------
3434
3535For more complete instructions on contributing to CPython development,
36- see the `Developer Guide `_.
36+ see the `Developer's Guide `_.
3737
38- .. _Developer Guide : https://devguide.python.org/
38+ .. _Developer's Guide : https://devguide.python.org/
3939
4040Using Python
4141------------
@@ -66,7 +66,7 @@ additional third-party libraries, depending on your build platform and
6666configure options. Not all standard library modules are buildable or
6767usable on all platforms. Refer to the
6868`Install dependencies <https://devguide.python.org/getting-started/setup-building.html#build-dependencies >`_
69- section of the `Developer Guide `_ for current detailed information on
69+ section of the `Developer's Guide `_ for current detailed information on
7070dependencies for various Linux distributions and macOS.
7171
7272On macOS, there are additional configure and build options related
@@ -143,7 +143,7 @@ accounting of changes can only be gleaned from the `commit history
143143<https://github.com/python/cpython/commits/main> `_.
144144
145145If you want to install multiple versions of Python, see the section below
146- entitled "Installing multiple versions ".
146+ entitled "Installing Multiple Versions ".
147147
148148
149149Documentation
@@ -186,17 +186,17 @@ that command to show the issue.
186186See `Running & Writing Tests <https://devguide.python.org/testing/run-write-tests.html >`_
187187for more on running tests.
188188
189- Installing multiple versions
189+ Installing Multiple Versions
190190----------------------------
191191
192- On Unix and Mac systems if you intend to install multiple versions of Python
192+ On Unix and macOS systems, if you intend to install multiple versions of Python
193193using the same installation prefix (``--prefix `` argument to the configure
194- script) you must take care that your primary python executable is not
194+ script), you must take care that your primary python executable is not
195195overwritten by the installation of a different version. All files and
196196directories installed using ``make altinstall `` contain the major and minor
197197version and can thus live side-by-side. ``make install `` also creates
198- ``${prefix}/bin/python3 `` which refers to ``${prefix}/bin/python3.X ``. If you
199- intend to install multiple versions using the same prefix you must decide which
198+ ``${prefix}/bin/python3 `` which refers to ``${prefix}/bin/python3.X ``.
199+ If you intend to install multiple versions using the same prefix, you must decide which
200200version (if any) is your "primary" version. Install that version using
201201``make install ``. Install all other versions using ``make altinstall ``.
202202
0 commit comments