]> granicus.if.org Git - python/commitdiff
Make the return key do what I mean more often.
authorGuido van Rossum <guido@python.org>
Tue, 13 Oct 1998 15:21:41 +0000 (15:21 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 13 Oct 1998 15:21:41 +0000 (15:21 +0000)
Tools/idle/PyShell.py

index d8c3dc161eac4fd4b381abc178b37dd1c6921a38..cc86c2e9f6dd4249467579efbf065202548a1413 100644 (file)
@@ -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")