about summary refs log tree commit diff stats
path: root/example
diff options
context:
space:
mode:
authorAjax <commial@gmail.com>2015-11-06 17:44:33 +0100
committerAjax <commial@gmail.com>2015-11-06 17:53:27 +0100
commitaf580c933236ad1b0fa4cd9adae4762747caef93 (patch)
tree6157a4d26fe26e70b868b1e4177b3c1e2e06cf0a /example
parentfe5b12c623fe8bc3d14beb6cd5f8f0db05aa1030 (diff)
downloadmiasm-af580c933236ad1b0fa4cd9adae4762747caef93.tar.gz
miasm-af580c933236ad1b0fa4cd9adae4762747caef93.zip
Example/Jitter: unused import
Diffstat (limited to 'example')
-rw-r--r--example/jitter/msp430.py3
1 files changed, 1 insertions, 2 deletions
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)