# HG changeset patch # User Gregory Szorc # Date 1570458861 14400 # Node ID 1fcf79e9943a17a2e7ae19954b2b5ad5972f8fff # Parent f244da1fc4c6371599a13d3077ea5071a321149b tests: use range() in generate-churning-module.py This is a test-only script. Performance on Python 2 for creating a full list instead of a generator doesn't matter. With this change, test-check-pyflakes.t passes on Python 3! Differential Revision: https://phab.mercurial-scm.org/D7019 diff -r f244da1fc4c6 -r 1fcf79e9943a tests/artifacts/scripts/generate-churning-bundle.py --- a/tests/artifacts/scripts/generate-churning-bundle.py Mon Oct 07 10:31:11 2019 -0400 +++ b/tests/artifacts/scripts/generate-churning-bundle.py Mon Oct 07 10:34:21 2019 -0400 @@ -62,7 +62,7 @@ else: current = str(iteridx) - for idx in xrange(NB_LINES): + for idx in range(NB_LINES): do_change_line = True if oldcontent is not None and ALWAYS_CHANGE_LINES < idx: do_change_line = not ((idx - iteridx) % OTHER_CHANGES) @@ -113,7 +113,7 @@ hg('init') updatefile(FILENAME, None) hg('commit', '--addremove', '--message', 'initial commit') - for idx in xrange(1, NB_CHANGESET + 1): + for idx in range(1, NB_CHANGESET + 1): if sys.stdout.isatty(): print("generating commit #%d/%d" % (idx, NB_CHANGESET)) if (idx % PERIOD_BRANCHING) == 0: