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/ir/analysis.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/ir/analysis.py')
| -rw-r--r-- | miasm2/ir/analysis.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/miasm2/ir/analysis.py b/miasm2/ir/analysis.py index 790a790e..037d1f4b 100644 --- a/miasm2/ir/analysis.py +++ b/miasm2/ir/analysis.py @@ -5,7 +5,8 @@ import logging from miasm2.ir.symbexec import symbexec from miasm2.core.graph import DiGraph -from miasm2.expression.expression import * +from miasm2.expression.expression \ + import ExprAff, ExprCond, ExprId, ExprInt, ExprMem, ExprOp log = logging.getLogger("analysis") console_handler = logging.StreamHandler() |