diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2004-12-21 22:10:32 +0000 |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2004-12-21 22:10:32 +0000 |
commit | dcba6622f52efafa28104a07db9d5ba2b1a8d628 (patch) | |
tree | 9a6d55ff4f4fed27f38f2c41b8d31e05c22e798b /Lib/idlelib/run.py | |
parent | f654c1c38394c7f94cfe4958f850181b2d8e08bb (diff) | |
download | cpython-git-dcba6622f52efafa28104a07db9d5ba2b1a8d628.tar.gz |
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/run.py')
-rw-r--r-- | Lib/idlelib/run.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/run.py b/Lib/idlelib/run.py index 90a46922c6..62f4ccea29 100644 --- a/Lib/idlelib/run.py +++ b/Lib/idlelib/run.py @@ -270,7 +270,7 @@ class MyHandler(rpc.RPCHandler): thread.interrupt_main() -class Executive: +class Executive(object): def __init__(self, rpchandler): self.rpchandler = rpchandler |