D1556: py3: use pycompat.bytestr() or '%d' in place of str()
pulkit (Pulkit Goyal)
phabricator at mercurial-scm.org
Sat Dec 2 19:51:49 UTC 2017
pulkit updated this revision to Diff 4084.
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D1556?vs=4049&id=4084
REVISION DETAIL
https://phab.mercurial-scm.org/D1556
AFFECTED FILES
mercurial/cmdutil.py
CHANGE DETAILS
diff --git a/mercurial/cmdutil.py b/mercurial/cmdutil.py
--- a/mercurial/cmdutil.py
+++ b/mercurial/cmdutil.py
@@ -823,9 +823,9 @@
total=None, seqno=None, revwidth=None, pathname=None):
node_expander = {
'H': lambda: hex(node),
- 'R': lambda: str(repo.changelog.rev(node)),
+ 'R': lambda: '%d' % repo.changelog.rev(node),
'h': lambda: short(node),
- 'm': lambda: re.sub('[^\w]', '_', str(desc))
+ 'm': lambda: re.sub('[^\w]', '_', desc or '')
}
expander = {
'%': lambda: '%',
@@ -837,13 +837,13 @@
expander.update(node_expander)
if node:
expander['r'] = (lambda:
- str(repo.changelog.rev(node)).zfill(revwidth or 0))
+ ('%d' % repo.changelog.rev(node)).zfill(revwidth or 0))
if total is not None:
- expander['N'] = lambda: str(total)
+ expander['N'] = lambda: '%d' % total
if seqno is not None:
- expander['n'] = lambda: str(seqno)
+ expander['n'] = lambda: '%d' % seqno
if total is not None and seqno is not None:
- expander['n'] = lambda: str(seqno).zfill(len(str(total)))
+ expander['n'] = (lambda: ('%d' % seqno).zfill(len('%d' % total)))
if pathname is not None:
expander['s'] = lambda: os.path.basename(pathname)
expander['d'] = lambda: os.path.dirname(pathname) or '.'
To: pulkit, #hg-reviewers, yuja
Cc: yuja, mercurial-devel
More information about the Mercurial-devel
mailing list