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 Arfrever
Recipients Arfrever, Sworddragon
Date 2013-11-08.07:45:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1383896753.01.0.524453578955.issue19525@psf.upfronthosting.co.za>
In-reply-to
Content
Python 3 is intentionally stricter.

Try attached file.

$ python2.7 test
$ python2.7 -t test
test: inconsistent use of tabs and spaces in indentation
$ python2.7 -tt test
  File "test", line 3
    2
    ^
TabError: inconsistent use of tabs and spaces in indentation
$ python3.3 test
  File "test", line 3
    2
    ^
TabError: inconsistent use of tabs and spaces in indentation
History
Date User Action Args
2013-11-08 07:45:53Arfreversetrecipients: + Arfrever, Sworddragon
2013-11-08 07:45:53Arfreversetmessageid: <1383896753.01.0.524453578955.issue19525@psf.upfronthosting.co.za>
2013-11-08 07:45:52Arfreverlinkissue19525 messages
2013-11-08 07:45:52Arfrevercreate