You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Traceback (most recent call last):
File "/python/bin/xortool-xor", line 117, in <module>
main()
File "/python/bin/xortool-xor", line 51, in main
sys.stdout.write(xor(datas, nocycle=nocycle))
File "/python/bin/xortool-xor", line 66, in xor
for i in xrange(maxlen):
NameError: name 'xrange' is not defined
xrange was replaced by range in Python 3
The text was updated successfully, but these errors were encountered:
@hellman would it be possible to actually cut a python3 release? It would be great as lot of distros are moving away from python2 and I would like to put this into the main repos.
xrange
was replaced byrange
in Python 3The text was updated successfully, but these errors were encountered: