From patchwork Sun Apr 1 01:59:02 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D3002: stringutil: rename local email/names variables to their plural forms From: phabricator X-Patchwork-Id: 30083 Message-Id: <23bc03290bc9c3140d9853fcdda63819@localhost.localdomain> To: mercurial-devel@mercurial-scm.org Date: Sun, 1 Apr 2018 01:59:02 +0000 This revision was automatically updated to reflect the committed changes. Closed by commit rHG54b896f195d1: stringutil: rename local email/names variables to their plural forms (authored by sheehan, committed by ). CHANGED PRIOR TO COMMIT https://phab.mercurial-scm.org/D3002?vs=7478&id=7482#toc REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D3002?vs=7478&id=7482 REVISION DETAIL https://phab.mercurial-scm.org/D3002 AFFECTED FILES mercurial/utils/stringutil.py CHANGE DETAILS To: sheehan, #hg-reviewers, yuja Cc: mercurial-devel diff --git a/mercurial/utils/stringutil.py b/mercurial/utils/stringutil.py --- a/mercurial/utils/stringutil.py +++ b/mercurial/utils/stringutil.py @@ -202,9 +202,9 @@ if line.lstrip().startswith('#') or any(c not in line for c in '<>@'): continue - # name, email hold the parsed emails and names for each line + # names, emails hold the parsed emails and names for each line # name_builder holds the words in a persons name - name, email = [], [] + names, emails = [], [] namebuilder = [] for element in line.split(): @@ -215,29 +215,29 @@ elif element.startswith('<') and element.endswith('>'): # We have found an email. # Parse it, and finalize any names from earlier - email.append(element[1:-1]) # Slice off the "<>" + emails.append(element[1:-1]) # Slice off the "<>" if namebuilder: - name.append(' '.join(namebuilder)) + names.append(' '.join(namebuilder)) namebuilder = [] # Break if we have found a second email, any other # data does not fit the spec for .mailmap - if len(email) > 1: + if len(emails) > 1: break else: # We have found another word in the committers name namebuilder.append(element) mailmapkey = mailmapping( - email=email[-1], - name=name[-1] if len(name) == 2 else None, + email=emails[-1], + name=names[-1] if len(names) == 2 else None, ) mailmap[mailmapkey] = mailmapping( - email=email[0], - name=name[0] if name else None, + email=emails[0], + name=names[0] if names else None, ) return mailmap