diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2004-12-21 22:10:32 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2004-12-21 22:10:32 (GMT) |
commit | dcba6622f52efafa28104a07db9d5ba2b1a8d628 (patch) | |
tree | 9a6d55ff4f4fed27f38f2c41b8d31e05c22e798b /Lib/idlelib/EditorWindow.py | |
parent | f654c1c38394c7f94cfe4958f850181b2d8e08bb (diff) | |
download | cpython-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/EditorWindow.py')
-rw-r--r-- | Lib/idlelib/EditorWindow.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py index 5d63991..4015c9e 100644 --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -37,7 +37,7 @@ def _find_module(fullname, path=None): raise ImportError, 'No source for module ' + module.__name__ return file, filename, descr -class EditorWindow: +class EditorWindow(object): from Percolator import Percolator from ColorDelegator import ColorDelegator from UndoDelegator import UndoDelegator @@ -1297,7 +1297,7 @@ import tokenize _tokenize = tokenize del tokenize -class IndentSearcher: +class IndentSearcher(object): # .run() chews over the Text widget, looking for a block opener # and the stmt following it. Returns a pair, |