diff options
author | Victor Stinner <vstinner@redhat.com> | 2018-09-07 15:30:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-07 15:30:33 (GMT) |
commit | 5e922658fb55734bf8b4c6246033ea93af172ff7 (patch) | |
tree | b83f43142e5f66a389b5c611fbc7ea164ba6bcaa /Lib/distutils | |
parent | 012f5b968a738b15ae9b40c499a1c0778b0615a9 (diff) | |
download | cpython-5e922658fb55734bf8b4c6246033ea93af172ff7.zip cpython-5e922658fb55734bf8b4c6246033ea93af172ff7.tar.gz cpython-5e922658fb55734bf8b4c6246033ea93af172ff7.tar.bz2 |
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
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/command/install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py index 0258d3de..41bf4bb 100644 --- a/Lib/distutils/command/install.py +++ b/Lib/distutils/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 |