Evgeny Kapun added the comment:

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.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue24260>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to