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 mark.dickinson
Recipients dimitriprosser, mark.dickinson
Date 2012-11-28.16:39:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1354120786.11.0.976632918507.issue16571@psf.upfronthosting.co.za>
In-reply-to
Content
This is expected behaviour for Python 2.x:  Python interprets every TAB character as advancing to the next multiple-of-8 column, regardless of how your editor sees it.  It would be too disruptive to change this behaviour in Python 2.x.

It's already fixed in Python 3: there it's a syntax error to mix tabs and spaces in this way.  Python 2.7 gives a warning if you run with the '-3' flag.
History
Date User Action Args
2012-11-28 16:39:46mark.dickinsonsetrecipients: + mark.dickinson, dimitriprosser
2012-11-28 16:39:46mark.dickinsonsetmessageid: <1354120786.11.0.976632918507.issue16571@psf.upfronthosting.co.za>
2012-11-28 16:39:46mark.dickinsonlinkissue16571 messages
2012-11-28 16:39:45mark.dickinsoncreate