about summary refs log tree commit diff stats
path: root/example/test_dis.py
diff options
context:
space:
mode:
authorCamille Mougey <camille.mougey@cea.fr>2015-01-08 17:48:00 +0100
committerCamille Mougey <camille.mougey@cea.fr>2015-01-23 17:24:42 +0100
commit638ac8e81238f3a6271034e8181701f41e3148cc (patch)
tree7a37235b14f3b8a144e608acc10bba086a4c4071 /example/test_dis.py
parentfa48e0550606e7e19e540f73b257ed1f0fc96caf (diff)
downloadmiasm-638ac8e81238f3a6271034e8181701f41e3148cc.tar.gz
miasm-638ac8e81238f3a6271034e8181701f41e3148cc.zip
Example/Test_dis: Reorganize and remove unused imports
Diffstat (limited to 'example/test_dis.py')
-rw-r--r--example/test_dis.py8
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()