about summary refs log tree commit diff stats
path: root/example/jitter/mips32.py
diff options
context:
space:
mode:
authorserpilliere <serpilliere@users.noreply.github.com>2015-11-07 14:17:58 +0100
committerserpilliere <serpilliere@users.noreply.github.com>2015-11-07 14:17:58 +0100
commit3e2a88817d41d6111801e64ca6de58eb5bdbc23b (patch)
treef5b1a41218d999c9e241d480e6672e3e9b55482a /example/jitter/mips32.py
parentecb48bb8a993e72b96d84fe09f81bbdc0c513fbc (diff)
parentb960a393c057205859dcb62301f8b22573d385af (diff)
downloadmiasm-3e2a88817d41d6111801e64ca6de58eb5bdbc23b.tar.gz
miasm-3e2a88817d41d6111801e64ca6de58eb5bdbc23b.zip
Merge pull request #255 from commial/unused-import
Unused import
Diffstat (limited to 'example/jitter/mips32.py')
-rw-r--r--example/jitter/mips32.py3
1 files changed, 1 insertions, 2 deletions
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)