mirror of
https://github.com/python/cpython.git
synced 2025-08-24 18:55:00 +00:00
1. Catch TypeError exception when writing to OutputWindow
2. PyShell: shell isn't working due to encoding issues. Temporarily direct exceptions to the terminal. Also, trap exceptions occurring during write() instead of passing. Checking (2) in temporarily to aid finding the encoding problem in IOBinding.py
This commit is contained in:
parent
801c89be5d
commit
cbbe98f04f
2 changed files with 5 additions and 2 deletions
|
@ -825,7 +825,7 @@ class PyShell(OutputWindow):
|
|||
self.console = PseudoFile(self, "console", IOBinding.encoding)
|
||||
if not use_subprocess:
|
||||
sys.stdout = self.stdout
|
||||
sys.stderr = self.stderr
|
||||
### sys.stderr = self.stderr # Don't redirect exceptions, pyshell NG
|
||||
sys.stdin = self
|
||||
#
|
||||
self.history = self.History(self.text)
|
||||
|
@ -1214,7 +1214,8 @@ class PyShell(OutputWindow):
|
|||
OutputWindow.write(self, s, tags, "iomark")
|
||||
self.text.mark_gravity("iomark", "left")
|
||||
except:
|
||||
pass
|
||||
raise ###pass # ### 11Aug07 KBK if we are expecting exceptions
|
||||
# let's find out what they are and be specific.
|
||||
if self.canceled:
|
||||
self.canceled = 0
|
||||
if not use_subprocess:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue