D2332: py3: use range instead of xrange on py3 in tests/test-ui-verbosity.py
pulkit (Pulkit Goyal)
phabricator at mercurial-scm.org
Sun Feb 18 14:17:41 UTC 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rHG2507bf180413: py3: use range instead of xrange on py3 in tests/test-ui-verbosity.py (authored by pulkit, committed by ).
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D2332?vs=5861&id=5876
REVISION DETAIL
https://phab.mercurial-scm.org/D2332
AFFECTED FILES
tests/test-ui-verbosity.py
CHANGE DETAILS
diff --git a/tests/test-ui-verbosity.py b/tests/test-ui-verbosity.py
--- a/tests/test-ui-verbosity.py
+++ b/tests/test-ui-verbosity.py
@@ -2,9 +2,13 @@
import os
from mercurial import (
+ pycompat,
ui as uimod,
)
+if pycompat.ispy3:
+ xrange = range
+
hgrc = os.environ['HGRCPATH']
f = open(hgrc)
basehgrc = f.read()
To: pulkit, #hg-reviewers
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list