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 BreamoreBoy
Recipients BreamoreBoy, abacabadabacaba, skrah
Date 2015-05-23.10:26:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1432376764.79.0.401896055258.issue24260@psf.upfronthosting.co.za>
In-reply-to
Content
From https://www.python.org/dev/peps/pep-0008/

<quote>
Tabs or Spaces?
Spaces are the preferred indentation method.

Tabs should be used solely to remain consistent with code that is already indented with tabs.

Python 3 disallows mixing the use of tabs and spaces for indentation.

Python 2 code indented with a mixture of tabs and spaces should be converted to using spaces exclusively.

When invoking the Python 2 command line interpreter with the -t option, it issues warnings about code that illegally mixes tabs and spaces. When using -tt these warnings become errors. These options are highly recommended!
</quote>
History
Date User Action Args
2015-05-23 10:26:04BreamoreBoysetrecipients: + BreamoreBoy, skrah, abacabadabacaba
2015-05-23 10:26:04BreamoreBoysetmessageid: <1432376764.79.0.401896055258.issue24260@psf.upfronthosting.co.za>
2015-05-23 10:26:04BreamoreBoylinkissue24260 messages
2015-05-23 10:26:04BreamoreBoycreate