diff options
author | Guido van Rossum <guido@python.org> | 1998-10-13 15:21:41 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-10-13 15:21:41 (GMT) |
commit | 3f08d40bd8df3ad8665ee08b25facd8e231499ce (patch) | |
tree | c837eabac5b3a3f6e5a40994095dc49bca9505b5 /Tools | |
parent | 4650df96bf2713af4b64829ac91d3349c0d8548e (diff) | |
download | cpython-3f08d40bd8df3ad8665ee08b25facd8e231499ce.zip cpython-3f08d40bd8df3ad8665ee08b25facd8e231499ce.tar.gz cpython-3f08d40bd8df3ad8665ee08b25facd8e231499ce.tar.bz2 |
Make the return key do what I mean more often.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/idle/PyShell.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/idle/PyShell.py b/Tools/idle/PyShell.py index d8c3dc1..cc86c2e 100644 --- a/Tools/idle/PyShell.py +++ b/Tools/idle/PyShell.py @@ -195,7 +195,7 @@ class PyShell(PyShellEditorWindow): text.bind("<<open-stack-viewer>>", self.open_stack_viewer) sys.stdout = PseudoFile(self, "stdout") - ##sys.stderr = PseudoFile(self, "stderr") + sys.stderr = PseudoFile(self, "stderr") sys.stdin = self self.console = PseudoFile(self, "console") |