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/optparse.py | |
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/optparse.py')
-rw-r--r-- | Lib/optparse.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/optparse.py b/Lib/optparse.py index e8ac1e1..1c450c6 100644 --- a/Lib/optparse.py +++ b/Lib/optparse.py @@ -929,7 +929,7 @@ class OptionContainer: self.set_description(description) def _create_option_mappings(self): - # For use by OptionParser constructor -- create the master + # For use by OptionParser constructor -- create the main # option mappings used by this OptionParser and all # OptionGroups that it owns. self._short_opt = {} # single letter -> Option instance |