Spaces:
Sleeping
Sleeping
Tiny update
Browse files
restrictedpython_code_eval.py
CHANGED
|
@@ -82,7 +82,7 @@ limited_builtins['tuple'] = limited_tuple
|
|
| 82 |
|
| 83 |
def limited_range(iFirst, *args):
|
| 84 |
# limited range function from Martijn Pieters
|
| 85 |
-
RANGELIMIT =
|
| 86 |
if not len(args):
|
| 87 |
iStart, iEnd, iStep = 0, iFirst, 1
|
| 88 |
elif len(args) == 1:
|
|
|
|
| 82 |
|
| 83 |
def limited_range(iFirst, *args):
|
| 84 |
# limited range function from Martijn Pieters
|
| 85 |
+
RANGELIMIT = 50000
|
| 86 |
if not len(args):
|
| 87 |
iStart, iEnd, iStep = 0, iFirst, 1
|
| 88 |
elif len(args) == 1:
|