mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +00:00
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:
parent
9f545c489a
commit
57bfe5dc5a
3 changed files with 17 additions and 33 deletions
|
@ -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__", (), {})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue