# HG changeset patch # User Manuel Jacob # Date 1653831219 -7200 # Node ID b2e05a8e15d1d378b516d63c0683ce2b63fbb0f2 # Parent 56f98406831b91652d585ef02035d7321459ce5d py3: replace mention of “xrange” in docstring by “range” diff -r 56f98406831b -r b2e05a8e15d1 mercurial/smartset.py --- a/mercurial/smartset.py Sun May 29 15:32:43 2022 +0200 +++ b/mercurial/smartset.py Sun May 29 15:33:39 2022 +0200 @@ -992,7 +992,7 @@ """Duck type for baseset class which represents a range of revisions and can work lazily and without having all the range in memory - Note that spanset(x, y) behave almost like xrange(x, y) except for two + Note that spanset(x, y) behave almost like range(x, y) except for two notable points: - when x < y it will be automatically descending, - revision filtered with this repoview will be skipped.