commit | 3f08d40bd8df3ad8665ee08b25facd8e231499ce | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Tue Oct 13 15:21:41 1998 +0000 |
committer | Guido van Rossum <guido@python.org> | Tue Oct 13 15:21:41 1998 +0000 |
tree | c837eabac5b3a3f6e5a40994095dc49bca9505b5 | |
parent | 4650df96bf2713af4b64829ac91d3349c0d8548e [diff] |
Make the return key do what I mean more often.
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 @@ 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")