diff options
| author | Camille Mougey <commial@gmail.com> | 2015-02-18 15:44:37 +0100 |
|---|---|---|
| committer | Camille Mougey <commial@gmail.com> | 2015-02-18 15:44:37 +0100 |
| commit | 5b3589b4735024e96becb5dbd8d25de4416f7cfb (patch) | |
| tree | 9d0533c278d27a51c31dd1a82695ffee7508e475 /miasm2/analysis/binary.py | |
| parent | 60d709d36466e1eeb82de8428971870ead09ab5a (diff) | |
| parent | adc302eede328d03de44f327efea9ac5ce388862 (diff) | |
| download | miasm-5b3589b4735024e96becb5dbd8d25de4416f7cfb.tar.gz miasm-5b3589b4735024e96becb5dbd8d25de4416f7cfb.zip | |
Merge pull request #75 from p-l-/refactor-wildcards
Replace some wildcard imports
Diffstat (limited to 'miasm2/analysis/binary.py')
| -rw-r--r-- | miasm2/analysis/binary.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/analysis/binary.py b/miasm2/analysis/binary.py index 17c87761..f5cecc87 100644 --- a/miasm2/analysis/binary.py +++ b/miasm2/analysis/binary.py @@ -1,6 +1,6 @@ import logging -from miasm2.core.bin_stream import * +from miasm2.core.bin_stream import bin_stream_str, bin_stream_elf, bin_stream_pe from miasm2.jitter.csts import PAGE_READ |