From 57bfe5dc5a4873026679fb911939beb69e35a9e8 Mon Sep 17 00:00:00 2001 From: "Kurt B. Kaiser" Date: Sat, 10 May 2003 00:09:52 +0000 Subject: 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 --- Lib/idlelib/rpc.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'Lib/idlelib/rpc.py') diff --git a/Lib/idlelib/rpc.py b/Lib/idlelib/rpc.py index 4c3ef3e2dd..8bb1aba2b6 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__", (), {}) -- cgit v1.2.1