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
This commit is contained in:
Victor Stinner 2018-09-07 17:30:33 +02:00 committed by GitHub
parent 012f5b968a
commit 5e922658fb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 7 additions and 7 deletions

View file

@ -72,7 +72,7 @@ class Verbose(Exception):
pass
class Pattern:
# master pattern object. keeps track of global attributes
# main pattern object. keeps track of global attributes
def __init__(self):
self.flags = 0
self.groupdict = {}