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 abacabadabacaba
Recipients BreamoreBoy, abacabadabacaba, skrah
Date 2015-05-24.16:41:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1432485694.35.0.0829751691726.issue24260@psf.upfronthosting.co.za>
In-reply-to
Content
Prohibiting tabs after spaces is not enough. For example, Python rejects this code:

    if 1:
    <space>if 1:
    <tab>pass

because its indentation is invalid if tab width is 1. However, it accepts this code:

    if 1:
    <tab>if 1:
    <10 spaces>pass

despite its indentation being invalid if tab width is 10 or more.
History
Date User Action Args
2015-05-24 16:41:34abacabadabacabasetrecipients: + abacabadabacaba, skrah, BreamoreBoy
2015-05-24 16:41:34abacabadabacabasetmessageid: <1432485694.35.0.0829751691726.issue24260@psf.upfronthosting.co.za>
2015-05-24 16:41:34abacabadabacabalinkissue24260 messages
2015-05-24 16:41:34abacabadabacabacreate