diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2003-05-10 00:09:52 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2003-05-10 00:09:52 (GMT) |
commit | 57bfe5dc5a4873026679fb911939beb69e35a9e8 (patch) | |
tree | 80f4879e6a224a7f8ae5994fd2a08694faa63b0a /Lib/idlelib/rpc.py | |
parent | 9f545c489ad7831305e9f477fe48e59ae60a5c83 (diff) | |
download | cpython-57bfe5dc5a4873026679fb911939beb69e35a9e8.zip cpython-57bfe5dc5a4873026679fb911939beb69e35a9e8.tar.gz cpython-57bfe5dc5a4873026679fb911939beb69e35a9e8.tar.bz2 |
1. Update debugger to not trace RPC code even when calling Queue and
threading modules. Can debug user code which imports these modules,
though.
2. Re-enable debugger in PyShell.
3. Remove old code implementing previous approaches to this issue.
M Debugger.py
M PyShell.py
M rpc.py
Diffstat (limited to 'Lib/idlelib/rpc.py')
-rw-r--r-- | Lib/idlelib/rpc.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/idlelib/rpc.py b/Lib/idlelib/rpc.py index 4c3ef3e..8bb1aba 100644 --- a/Lib/idlelib/rpc.py +++ b/Lib/idlelib/rpc.py @@ -558,8 +558,6 @@ class RPCProxy: if not self.__attributes.has_key(name): raise AttributeError, name - __getattr__.DebuggerStepThrough = 1 - def __getattributes(self): self.__attributes = self.sockio.remotecall(self.oid, "__attributes__", (), {}) |