Superbird11 / ranges

Continuous Range, RangeSet, and RangeDict data structures for Python
MIT License
101 stars 10 forks source link

Introduction in readme says Python doesn't have a range data structure #9

Closed DustinWehr closed 3 years ago

DustinWehr commented 3 years ago

It does of course, since it's the standard way of writing for loops (for x in range(start, end)). Most of that introduction should probably be scrapped.

Superbird11 commented 3 years ago

Added a line in the introductory paragraph of the readme which specifies how the built-in range() does not work for the purposes this module addresses.