diff options
author | Victor Stinner <vstinner@redhat.com> | 2018-09-07 17:30:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-07 17:30:33 +0200 |
commit | d2eb595732e54ff8e785483b2a47fd3d20431057 (patch) | |
tree | 5709c51bf99b3b3012587b7db4b5df81f55c35c2 | |
parent | 0e48f661aab7b40bbe9c8e033594f61e7e712b4a (diff) | |
download | python-setuptools-git-d2eb595732e54ff8e785483b2a47fd3d20431057.tar.gz |
bpo-34605: Avoid master/slave terms (GH-9101)
* Replace "master process" with "parent process"
* Replace "master option mappings" with "main option mappings"
* Replace "master pattern object" with "main pattern object"
* ssl: replace "master" with "server"
* And some other similar changes
-rw-r--r-- | command/install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/command/install.py b/command/install.py index 0258d3de..41bf4bb9 100644 --- a/command/install.py +++ b/command/install.py @@ -223,7 +223,7 @@ class install(Command): def finalize_options(self): """Finalizes options.""" - # This method (and its pliant slaves, like 'finalize_unix()', + # This method (and its pliant childs, like 'finalize_unix()', # 'finalize_other()', and 'select_scheme()') is where the default # installation directories for modules, extension modules, and # anything else we care to install from a Python module |