guydav commited on
Commit
40e65f2
1 Parent(s): c01ed19

Tiny update

Browse files
Files changed (1) hide show
  1. restrictedpython_code_eval.py +1 -1
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 = 10000
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: