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/sre_parse.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/sre_parse.py')
-rw-r--r-- | Lib/sre_parse.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/sre_parse.py b/Lib/sre_parse.py index 7a172ff..f414402 100644 --- a/Lib/sre_parse.py +++ b/Lib/sre_parse.py @@ -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 = {} |