File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -850,18 +850,18 @@ def init(
850850 # Record a Value indicating the length of the sequence, if known at compile time.
851851 self .length = length
852852 self .reverse = reverse
853-
853+
854854 self .start = 0 if start is None else start
855855 assert self .start >= 0 , "implement me!"
856-
856+
857857 self .stop = - 1 if stop is None else stop
858858 assert self .stop == - 1 , "implement me!"
859-
859+
860860 self .step = 1 if step is None else step
861861 assert self .step and self .step >= 1 :
862862 if reverse :
863863 self .step *= - 1
864-
864+
865865 # Define target to contain the expression, along with the index that will be used
866866 # for the for-loop. If we are inside of a generator function, spill these into the
867867 # environment class.
You can’t perform that action at this time.
0 commit comments