diff hgext/rebase.py @ 28508:3c6e94d0811c

encoding: use range() instead of xrange() Python 3 doesn't have xrange(). Instead, range() on Python 3 is a generator, like xrange() is on Python 2. The benefits of xrange() over range() are when there are very large ranges that are too expensive to pre-allocate. The code here is only creating <128 values, so the benefits of xrange() should be negligible. With this patch, encoding.py imports safely on Python 3.
author Gregory Szorc <gregory.szorc@gmail.com>
date Fri, 11 Mar 2016 21:27:26 -0800
parents a47881680402
children 6c4d23fe611c
line wrap: on
line diff