diff options
| author | Camille Mougey <camille.mougey@cea.fr> | 2015-01-08 17:48:00 +0100 |
|---|---|---|
| committer | Camille Mougey <camille.mougey@cea.fr> | 2015-01-23 17:24:42 +0100 |
| commit | 638ac8e81238f3a6271034e8181701f41e3148cc (patch) | |
| tree | 7a37235b14f3b8a144e608acc10bba086a4c4071 /example | |
| parent | fa48e0550606e7e19e540f73b257ed1f0fc96caf (diff) | |
| download | miasm-638ac8e81238f3a6271034e8181701f41e3148cc.tar.gz miasm-638ac8e81238f3a6271034e8181701f41e3148cc.zip | |
Example/Test_dis: Reorganize and remove unused imports
Diffstat (limited to 'example')
| -rw-r--r-- | example/test_dis.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/example/test_dis.py b/example/test_dis.py index 722e99c9..b200b6ac 100644 --- a/example/test_dis.py +++ b/example/test_dis.py @@ -1,14 +1,14 @@ import sys import os -import time +import logging +from optparse import OptionParser +from pdb import pm from miasm2.analysis.binary import Container -from miasm2.core.asmbloc import * -from optparse import OptionParser +from miasm2.core.asmbloc import log_asmbloc, asm_label, bloc2graph from miasm2.expression.expression import ExprId from miasm2.core.interval import interval from miasm2.analysis.machine import Machine -from pdb import pm log = logging.getLogger("dis") console_handler = logging.StreamHandler() |