diff options
| author | Ajax <commial@gmail.com> | 2015-11-06 17:46:44 +0100 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2015-11-06 17:53:27 +0100 |
| commit | c4cb1e86fc209e0bb5461a3622c4d7a226a87b13 (patch) | |
| tree | 08e14f56e35736f1c4cefa7cc304d838fecf3f27 /example/jitter/mips32.py | |
| parent | 8f1602915ff9039619938ece50b09731b81ebe6f (diff) | |
| download | miasm-c4cb1e86fc209e0bb5461a3622c4d7a226a87b13.tar.gz miasm-c4cb1e86fc209e0bb5461a3622c4d7a226a87b13.zip | |
Example/Jitter: unused import
Diffstat (limited to 'example/jitter/mips32.py')
| -rw-r--r-- | example/jitter/mips32.py | 3 |
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) |