about summary refs log tree commit diff stats
path: root/example/jitter
diff options
context:
space:
mode:
Diffstat (limited to 'example/jitter')
-rw-r--r--example/jitter/arm_sc.py4
-rw-r--r--example/jitter/mips32.py3
-rw-r--r--example/jitter/msp430.py3
3 files changed, 2 insertions, 8 deletions
diff --git a/example/jitter/arm_sc.py b/example/jitter/arm_sc.py
index 80714641..ca765d31 100644
--- a/example/jitter/arm_sc.py
+++ b/example/jitter/arm_sc.py
@@ -1,12 +1,8 @@
 #!/usr/bin/env python
 #-*- coding:utf-8 -*-
-from miasm2.analysis import debugging, gdbserver
-
 from miasm2.analysis.sandbox import Sandbox_Linux_armb_str
 from miasm2.analysis.sandbox import Sandbox_Linux_arml_str
-from miasm2.analysis.machine import Machine
 from elfesteem.strpatchwork import StrPatchwork
-import logging
 
 from pdb import pm
 
diff --git a/example/jitter/mips32.py b/example/jitter/mips32.py
index 20d451ab..a03cac8e 100644
--- a/example/jitter/mips32.py
+++ b/example/jitter/mips32.py
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
 #-*- coding:utf-8 -*-
 from argparse import ArgumentParser
-from miasm2.analysis import debugging, gdbserver
+from miasm2.analysis import debugging
 from miasm2.jitter.csts import *
 from miasm2.analysis.machine import Machine
 
@@ -71,6 +71,5 @@ def jit_mips32_binary(args):
         print(myjit.continue_run())
     return myjit
 if __name__ == '__main__':
-    from sys import stderr
     args = parser.parse_args()
     myjit = jit_mips32_binary(args)
diff --git a/example/jitter/msp430.py b/example/jitter/msp430.py
index eb327e05..89ecd930 100644
--- a/example/jitter/msp430.py
+++ b/example/jitter/msp430.py
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
 #-*- coding:utf-8 -*-
 from argparse import ArgumentParser
-from miasm2.analysis import debugging, gdbserver
+from miasm2.analysis import debugging
 from miasm2.jitter.csts import *
 from miasm2.analysis.machine import Machine
 
@@ -64,6 +64,5 @@ def jit_msp430_binary(args):
         print(myjit.continue_run())
 
 if __name__ == '__main__':
-    from sys import stderr
     args = parser.parse_args()
     jit_msp430_binary(args)