diff options
Diffstat (limited to 'example/test_dis.py')
| -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() |