about summary refs log tree commit diff stats
path: root/miasm2/analysis/debugging.py
diff options
context:
space:
mode:
authorCamille Mougey <camille.mougey@cea.fr>2015-02-18 14:19:56 +0100
committerCamille Mougey <camille.mougey@cea.fr>2015-02-18 20:42:54 +0100
commitd2cc082ba50397609e186d516b75226d638841d3 (patch)
treecd47a1cd48aa096f852654c774402bca903e3748 /miasm2/analysis/debugging.py
parentd7b6cd2f8a992b56bec4a8aa60f1cdf99a560583 (diff)
downloadmiasm-d2cc082ba50397609e186d516b75226d638841d3.tar.gz
miasm-d2cc082ba50397609e186d516b75226d638841d3.zip
PyLint: Import errors, pointless statements (`fds`), bad indentation
Diffstat (limited to 'miasm2/analysis/debugging.py')
-rw-r--r--miasm2/analysis/debugging.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/analysis/debugging.py b/miasm2/analysis/debugging.py
index 61e2ed95..57f30181 100644
--- a/miasm2/analysis/debugging.py
+++ b/miasm2/analysis/debugging.py
@@ -77,7 +77,7 @@ class Debugguer(object):
 
     def init_memory_breakpoint(self):
         "Set exception handler on EXCEPT_BREAKPOINT_INTERN"
-        self.myjit.exception_handler
+        raise NotImplementedError("Not implemented")
 
     def add_memory_breakpoint(self, addr, size, read=False, write=False):
         "add mem bp @[addr, addr + size], on read/write/both"