mirror of
https://github.com/hakril/PythonForWindows
synced 2026-06-08 14:31:45 +00:00
small fix in Debugger.add_bp
This commit is contained in:
@@ -34,6 +34,8 @@ TODO:
|
||||
|
||||
- Parse .IDL file for more COM NAME->IID
|
||||
|
||||
- Add test for debugger with breakpoint that add another breakpoint on trigger
|
||||
|
||||
|
||||
CHANGELOG:
|
||||
* NEW REGISTRY -> change examples and documentation
|
||||
|
||||
+2
-2
@@ -130,9 +130,9 @@ class Debugger(object):
|
||||
_setup_method = getattr(self, "_setup_breakpoint_" + bp.type)
|
||||
if target is None:
|
||||
if bp.type == STANDARD_BP: #TODO: better..
|
||||
targets = self.processes
|
||||
targets = self.processes.values()
|
||||
else:
|
||||
targets = self.threads
|
||||
targets = self.threads.values()
|
||||
else:
|
||||
targets = [target]
|
||||
for target in targets:
|
||||
|
||||
Reference in New Issue
Block a user