commit | def2c967188485ef3518ee00bb9a6f7365fba1a8 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Fri May 21 04:38:27 1999 +0000 |
committer | Guido van Rossum <guido@python.org> | Fri May 21 04:38:27 1999 +0000 |
tree | b3429a906ddc5217365c91492de311503306c1a2 | |
parent | c40c54782cdbdc7b0b90d0dd805647aa92e75a78 [diff] [blame] |
Much improved autoindent and handling of tabs, by Tim Peters.
diff --git a/Tools/idle/PyShell.py b/Tools/idle/PyShell.py index 64ef2d1..e01cad8 100644 --- a/Tools/idle/PyShell.py +++ b/Tools/idle/PyShell.py
@@ -291,7 +291,7 @@ __builtin__.quit = __builtin__.exit = "To exit, type Ctrl-D." self.auto = self.extensions["AutoIndent"] # Required extension - self.auto.config(prefertabs=1) + self.auto.config(usetabs=1, indentwidth=8) text = self.text text.configure(wrap="char")