Make the ``current_thread`` ``single_step``. ``Debugger.on_single_step`` will be called after that
(self)
| 950 | return self.remove_pending_breakpoint(bp, original_target) |
| 951 | |
| 952 | def single_step(self): |
| 953 | """Make the ``current_thread`` ``single_step``. ``Debugger.on_single_step`` will be called after that""" |
| 954 | t = self.current_thread |
| 955 | ctx = t.context |
| 956 | ctx.EEFlags.TF = 1 |
| 957 | t.set_context(ctx) |
| 958 | |
| 959 | ## Memory Breakpoint helper |
| 960 | def get_memory_breakpoint_at(self, addr, process=None): |
nothing calls this directly
no test coverage detected