diff options
| author | Camille Mougey <camille.mougey@cea.fr> | 2014-12-03 19:39:01 +0100 |
|---|---|---|
| committer | Camille Mougey <camille.mougey@cea.fr> | 2014-12-03 22:29:33 +0100 |
| commit | a8234d789ea2c7eaed39bb73a1a43d9fb93d5980 (patch) | |
| tree | d96fe4f2778a8b6cdaf213206ae8afa6633aea2e | |
| parent | 60ea6e9608a840c55ea0f276eebaa36751018ef5 (diff) | |
| download | miasm-a8234d789ea2c7eaed39bb73a1a43d9fb93d5980.tar.gz miasm-a8234d789ea2c7eaed39bb73a1a43d9fb93d5980.zip | |
Jitload: Remove unused imports and functions
| -rw-r--r-- | miasm2/jitter/jitload.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/miasm2/jitter/jitload.py b/miasm2/jitter/jitload.py index e7a2af85..8e1ec315 100644 --- a/miasm2/jitter/jitload.py +++ b/miasm2/jitter/jitload.py @@ -8,8 +8,6 @@ from miasm2.core.utils import * from miasm2.core.bin_stream import bin_stream from miasm2.ir.ir2C import init_arch_C -from miasm2.core.interval import interval -import inspect import logging @@ -35,10 +33,6 @@ except ImportError: log.error('cannot import jit python') -def whoami(): - return inspect.stack()[2][3] - - class bin_stream_vm(bin_stream): def __init__(self, vm, offset=0L, base_offset=0L): |