madscatt / zazzie

development branch
GNU General Public License v3.0
2 stars 3 forks source link

range in Python 3 = xrange in Python 2 #129

Closed skrueger111 closed 1 year ago

skrueger111 commented 2 years ago

Xrange doesn't exist in Python 3. Rather, range in Python 3 = xrange in Python 2. We shouldn't use xrange if we want code to be compatible with Python 3. However, in Python 3, range will behave like Python 2's xrange.

Need to add this to docs

madscatt commented 1 year ago

Done.