# HG changeset patch # User Pulkit Goyal # Date 1535972010 -10800 # Node ID aa95fd0257df16931b3f82b2aff57eef34068dc8 # Parent b3572f733dbd36ca0fdca638f77538badda9c460 py3: alias xrange to range in tests/test-fastannotate-revmap.py xrange is not available on Python 3. Differential Revision: https://phab.mercurial-scm.org/D4450 diff -r b3572f733dbd -r aa95fd0257df tests/test-fastannotate-revmap.py --- a/tests/test-fastannotate-revmap.py Mon Sep 03 13:52:49 2018 +0300 +++ b/tests/test-fastannotate-revmap.py Mon Sep 03 13:53:30 2018 +0300 @@ -3,9 +3,16 @@ import os import tempfile -from mercurial import util +from mercurial import ( + pycompat, + util, +) + from hgext.fastannotate import error, revmap +if pycompat.ispy3: + xrange = range + def genhsh(i): return chr(i) + b'\0' * 19