mirror of
https://github.com/python/cpython.git
synced 2025-08-27 04:05:34 +00:00
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
This commit is contained in:
parent
f654c1c383
commit
dcba6622f5
6 changed files with 23 additions and 11 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue