summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/PyShell.py
diff options
context:
space:
mode:
authorKurt B. Kaiser <kbk@shore.net>2004-12-21 22:10:32 (GMT)
committerKurt B. Kaiser <kbk@shore.net>2004-12-21 22:10:32 (GMT)
commitdcba6622f52efafa28104a07db9d5ba2b1a8d628 (patch)
tree9a6d55ff4f4fed27f38f2c41b8d31e05c22e798b /Lib/idlelib/PyShell.py
parentf654c1c38394c7f94cfe4958f850181b2d8e08bb (diff)
downloadcpython-dcba6622f52efafa28104a07db9d5ba2b1a8d628.zip
cpython-dcba6622f52efafa28104a07db9d5ba2b1a8d628.tar.gz
cpython-dcba6622f52efafa28104a07db9d5ba2b1a8d628.tar.bz2
The remote procedure call module rpc.py can now access data attributes of
remote registered objects. Changes to these attributes are local, however. M EditorWindow.py M NEWS.txt M PyShell.py M idlever.py M rpc.py M run.py
Diffstat (limited to 'Lib/idlelib/PyShell.py')
-rw-r--r--Lib/idlelib/PyShell.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py
index 887d638..fae6130 100644
--- a/Lib/idlelib/PyShell.py
+++ b/Lib/idlelib/PyShell.py
@@ -1186,7 +1186,7 @@ class PyShell(OutputWindow):
if not use_subprocess:
raise KeyboardInterrupt
-class PseudoFile:
+class PseudoFile(object):
def __init__(self, shell, tags, encoding=None):
self.shell = shell