changeset 49284 | d44e3c45f0e4 |
parent 48875 | 6000f5b25c9b |
child 49609 | 9cac281eb9c0 |
child 49785 | fa955e3f6aee |
--- a/mercurial/utils/storageutil.py Sun May 29 12:38:54 2022 +0200 +++ b/mercurial/utils/storageutil.py Sun May 29 15:17:27 2022 +0200 @@ -19,7 +19,6 @@ dagop, error, mdiff, - pycompat, ) from ..interfaces import repository from ..revlogutils import sidedata as sidedatamod @@ -181,7 +180,7 @@ else: stop = storelen - return pycompat.xrange(start, stop, step) + return range(start, stop, step) def fileidlookup(store, fileid, identifier):