Feature request #7640
Make AutoIndentation possible in python console
Status: | Open | ||
---|---|---|---|
Priority: | Normal | ||
Assignee: | - | ||
Category: | Python plugins | ||
Pull Request or Patch supplied: | No | Resolution: | |
Easy fix?: | No | Copied to github as #: | 16561 |
Description
It would be great to have auto indentation after ':' signs.
For example, the below snippet would fail.
lst = ['a','b','c','d'] for i in lst: print i File "<input>", line 2 print i ^ IndentationError: expected an indented block
To make it work, we need to add required spaces to indent the lines after the ':' sign
lst = ['a','b','c','d'] for i in lst: print i a b c d
History
#1 Updated by Jürgen Fischer over 10 years ago
- Target version changed from Version 2.0.0 to Future Release - Lower Priority
#2 Updated by Giovanni Manghi over 7 years ago
- Easy fix? set to No