diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2018-06-21 18:24:32 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-06-21 18:24:32 +0200 |
| commit | 81a54b95a1424da691e6bb5a9f015aefda1325d7 (patch) | |
| tree | 9185e2f1ac535c60be3b01cc99ff77ff37c5b885 /example/expression/simplification_tools.py | |
| parent | 02bd29be2d3fc6fc0429fa9c11ce6902bbd535f0 (diff) | |
| parent | b8d5b255bad4b03c57356c9af474e6d8a12105db (diff) | |
| download | miasm-81a54b95a1424da691e6bb5a9f015aefda1325d7.tar.gz miasm-81a54b95a1424da691e6bb5a9f015aefda1325d7.zip | |
Merge pull request #781 from commial/fix/code-cleaning
Code cleaning: remove useless / commented code
Diffstat (limited to 'example/expression/simplification_tools.py')
| -rw-r--r-- | example/expression/simplification_tools.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/example/expression/simplification_tools.py b/example/expression/simplification_tools.py index 7c15b3e7..cb062fb3 100644 --- a/example/expression/simplification_tools.py +++ b/example/expression/simplification_tools.py @@ -32,7 +32,6 @@ x = ExprMem(a + b + ExprInt(0x42, 32), 32) def replace_expr(e): - # print 'visit', e dct = {c + ExprInt(0x42, 32): d, a + b: c, } if e in dct: |