D2330: py3: use range instead of xrange in tests/test-mq-qimport.t
pulkit (Pulkit Goyal)
phabricator at mercurial-scm.org
Sun Feb 18 14:17:46 UTC 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rHGb543b3ce608b: py3: use range instead of xrange in tests/test-mq-qimport.t (authored by pulkit, committed by ).
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D2330?vs=5859&id=5875
REVISION DETAIL
https://phab.mercurial-scm.org/D2330
AFFECTED FILES
tests/test-mq-qimport.t
CHANGE DETAILS
diff --git a/tests/test-mq-qimport.t b/tests/test-mq-qimport.t
--- a/tests/test-mq-qimport.t
+++ b/tests/test-mq-qimport.t
@@ -7,7 +7,7 @@
> assert (len(args) % 2) == 0
>
> f = open(path, 'wb')
- > for i in xrange(len(args)/2):
+ > for i in range(len(args)/2):
> count, s = args[2*i:2*i+2]
> count = int(count)
> s = s.decode('string_escape')
To: pulkit, #hg-reviewers
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list