New submission from aggu <aggu...@gmail.com>: Indentation should not be "too strict", any number of leading whitespaces greater that its "parent" or "peer" should be allowed. For example, the following code should be allow:
a = 1 # step 1 # step 1.1 a = a + 1 # step 1.2 a = a * 2 # step 2 # … , which is more readable, I think, than: a = 1 # step 1 # step 1.1 a = a + 1 # step 1.2 a = a * 2 # step 2 # … . ---------- messages: 359712 nosy: aggu priority: normal severity: normal status: open title: Flexible indentation type: enhancement _______________________________________ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue39284> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com