remove superfluous range module
This commit is contained in:
parent
267c7b5650
commit
7f47224bd9
@ -1,19 +0,0 @@
|
||||
class Range:
|
||||
def __init__(self, min, max):
|
||||
self.min = min
|
||||
self.max = max
|
||||
def __iter__(self):
|
||||
let me = self
|
||||
def makeIter(ind):
|
||||
let l = me
|
||||
let i = ind
|
||||
def iter():
|
||||
if i >= l.max:
|
||||
return iter
|
||||
let out = i
|
||||
i = i + 1
|
||||
return out
|
||||
return iter
|
||||
return makeIter(self.min)
|
||||
|
||||
return Range
|
Loading…
Reference in New Issue
Block a user