Typo fix suggested by Ondrej Certik
authorRobert Bradshaw <robertwb@math.washington.edu>
Wed, 12 Dec 2007 20:02:49 +0000 (12:02 -0800)
committerRobert Bradshaw <robertwb@math.washington.edu>
Wed, 12 Dec 2007 20:02:49 +0000 (12:02 -0800)
Cython/Compiler/Nodes.py
Cython/Compiler/Options.py

index edc6d99181fa992be3d579d82098c91f348f7630..1689e564d3043e12128e7c3bd265fdf38dc15d64 100644 (file)
@@ -2417,7 +2417,7 @@ class ForInStatNode(StatNode):
         # The direction must be determined at compile time to set relations. 
         # Otherwise, return False. 
         if len(args) < 3:
-            self.step = ExprNodes.IntNode(pos = sequence.pos, value='1')
+            self.step = ExprNodes.IntNode(pos = args[0].pos, value='1')
             self.relation1 = '<='
             self.relation2 = '<'
             return True
index eaad9617055d93704b6ba4f2b2b55ba75e8b4f5a..9a2120e912f002b69714e266692191b83e1f673b 100644 (file)
@@ -32,4 +32,4 @@ annotate = 0
 # i to overflow. Specifically, if this option is set, an error will be
 # raised before the loop is entered, wheras without this option the loop
 # will execute util a overflowing value is encountered. 
-convert_range = 0
\ No newline at end of file
+convert_range = 0