diff options
author | Victor Stinner <vstinner@redhat.com> | 2018-09-12 01:40:06 +0200 |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-09-11 16:40:06 -0700 |
commit | fa7dfae3171914f91d629a64c6e829788b485b06 (patch) | |
tree | e8f636f7513c310b3198e639bbfe8bcd3e7b7e9f /Lib/distutils/command/install.py | |
parent | 50c99d917c0eded2afcad0a3d7e49475a76440a3 (diff) | |
download | cpython-git-fa7dfae3171914f91d629a64c6e829788b485b06.tar.gz |
bpo-34605: Replace "pliant children" with "helpers" (GH-9195)
In distutils.command.install, replace "pliant children" (previously,
it was "pliant slaves") with "helpers".
<!-- issue-number: [bpo-34605](https://www.bugs.python.org/issue34605) -->
https://bugs.python.org/issue34605
<!-- /issue-number -->
Diffstat (limited to 'Lib/distutils/command/install.py')
-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 a1d1a1ea37..c625c95bf7 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 children, like 'finalize_unix()', + # This method (and its helpers, 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 |