summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/pyshell.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/idlelib/pyshell.py')
-rwxr-xr-xLib/idlelib/pyshell.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/idlelib/pyshell.py b/Lib/idlelib/pyshell.py
index 5830b7a..447e9ec 100755
--- a/Lib/idlelib/pyshell.py
+++ b/Lib/idlelib/pyshell.py
@@ -889,11 +889,11 @@ class PyShell(OutputWindow):
OutputWindow.__init__(self, flist, None, None)
- self.usetabs = True
+ self.usetabs = False
# indentwidth must be 8 when using tabs. See note in EditorWindow:
- self.indentwidth = 8
+ self.indentwidth = 4
- self.sys_ps1 = sys.ps1 if hasattr(sys, 'ps1') else '>>> '
+ self.sys_ps1 = sys.ps1 if hasattr(sys, 'ps1') else '>>>\n'
self.prompt_last_line = self.sys_ps1.split('\n')[-1]
self.prompt = self.sys_ps1 # Changes when debug active