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
This commit is contained in:
Kurt B. Kaiser 2003-05-10 00:09:52 +00:00
parent 9f545c489a
commit 57bfe5dc5a
3 changed files with 17 additions and 33 deletions

View file

@ -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__", (), {})