1
0
forked from VimPlug/jedi

implemented xrange

This commit is contained in:
David Halter
2012-08-11 00:02:04 +02:00
parent 2d6ba4e8ec
commit e41c4c6cc3

View File

@@ -26,6 +26,18 @@ def range(start, stop=None, step=1):
return [0]
class xrange():
# Attention: this function doesn't exist in Py3k (there it is range).
def __iter__(self):
yield 1
def count(self):
return 1
def index(self):
return 1
#--------------------------------------------------------
# descriptors
#--------------------------------------------------------