summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/run.py
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2012-07-25 08:49:32 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2012-07-25 08:49:32 (GMT)
commitf4b341b0e6fa19e2ae88df754081a24ef1eaf033 (patch)
tree05ee195c100994bf716cc7788a964b0dc1824566 /Lib/idlelib/run.py
parentf3923e9dd7a49bc2bc8600b3e0bb147b70e2de28 (diff)
parentc882b7c51ab4b76bdf44cf4dab5ca1b55ccb2155 (diff)
downloadcpython-f4b341b0e6fa19e2ae88df754081a24ef1eaf033.zip
cpython-f4b341b0e6fa19e2ae88df754081a24ef1eaf033.tar.gz
cpython-f4b341b0e6fa19e2ae88df754081a24ef1eaf033.tar.bz2
merge 3.2
Diffstat (limited to 'Lib/idlelib/run.py')
-rw-r--r--Lib/idlelib/run.py25
1 files changed, 21 insertions, 4 deletions
diff --git a/Lib/idlelib/run.py b/Lib/idlelib/run.py
index 464861f..9872af4 100644
--- a/Lib/idlelib/run.py
+++ b/Lib/idlelib/run.py
@@ -269,7 +269,7 @@ class _RPCFile(io.TextIOBase):
def __getattribute__(self, name):
# When accessing the 'rpc' attribute, or 'write', use ours
- if name in ('rpc', 'write'):
+ if name in ('rpc', 'write', 'writelines'):
return io.TextIOBase.__getattribute__(self, name)
# Else only look into the remote object only
return getattr(self.rpc, name)
@@ -277,20 +277,37 @@ class _RPCFile(io.TextIOBase):
def __setattr__(self, name, value):
return setattr(self.rpc, name, value)
+ @staticmethod
+ def _ensure_string(func):
+ def f(self, s):
+ if not isinstance(s, str):
+ raise TypeError('must be str, not ' + type(s).__name__)
+ return func(self, s)
+ return f
+
+class _RPCOutputFile(_RPCFile):
+ @_RPCFile._ensure_string
def write(self, s):
if not isinstance(s, str):
raise TypeError('must be str, not ' + type(s).__name__)
return self.rpc.write(s)
+class _RPCInputFile(_RPCFile):
+ @_RPCFile._ensure_string
+ def write(self, s):
+ raise io.UnsupportedOperation("not writable")
+ writelines = write
+
class MyHandler(rpc.RPCHandler):
def handle(self):
"""Override base method"""
executive = Executive(self)
self.register("exec", executive)
- sys.stdin = self.console = self.get_remote_proxy("stdin")
- sys.stdout = _RPCFile(self.get_remote_proxy("stdout"))
- sys.stderr = _RPCFile(self.get_remote_proxy("stderr"))
+ self.console = self.get_remote_proxy("stdin")
+ sys.stdin = _RPCInputFile(self.console)
+ sys.stdout = _RPCOutputFile(self.get_remote_proxy("stdout"))
+ sys.stderr = _RPCOutputFile(self.get_remote_proxy("stderr"))
sys.displayhook = rpc.displayhook
# page help() text to shell.
import pydoc # import must be done here to capture i/o binding