D2557: revset: use %d to turn an int into a bytestr
durin42 (Augie Fackler)
phabricator at mercurial-scm.org
Fri Mar 2 17:11:07 UTC 2018
durin42 created this revision.
Herald added a subscriber: mercurial-devel.
Herald added a reviewer: hg-reviewers.
REPOSITORY
rHG Mercurial
REVISION DETAIL
https://phab.mercurial-scm.org/D2557
AFFECTED FILES
mercurial/revset.py
CHANGE DETAILS
diff --git a/mercurial/revset.py b/mercurial/revset.py
--- a/mercurial/revset.py
+++ b/mercurial/revset.py
@@ -2061,7 +2061,7 @@
try:
# fast path for integer revision
r = int(t)
- if str(r) != t or r not in cl:
+ if ('%d' % r) != t or r not in cl:
raise ValueError
revs = [r]
except ValueError:
To: durin42, #hg-reviewers
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list