This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author zach.ware
Recipients zach.ware, zwol
Date 2015-02-25.04:05:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1424837114.8.0.0135810029549.issue23518@psf.upfronthosting.co.za>
In-reply-to
Content
The caret is correct:

>>> While = 'some string'
>>> While
'some string'
>>> the = range(10)
>>> the
range(0, 10)
>>> for x in the: pass
... 
>>> 

In both cases, the error is having an expression followed by an expression, and the caret points at the second expression.  There's nothing wrong with 'While' and 'the', they're perfectly legitimate names, though rarely used.
History
Date User Action Args
2015-02-25 04:05:14zach.waresetrecipients: + zach.ware, zwol
2015-02-25 04:05:14zach.waresetmessageid: <1424837114.8.0.0135810029549.issue23518@psf.upfronthosting.co.za>
2015-02-25 04:05:14zach.warelinkissue23518 messages
2015-02-25 04:05:14zach.warecreate