diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-04-19 18:02:10 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-04-19 18:02:10 +0200 |
| commit | 7d4100ea290c0bd60ee225a401786bc856d92615 (patch) | |
| tree | cbba60755e94e26ac29aa2574d93358c1c73ab5c /miasm2/ir/symbexec.py | |
| parent | 145c218af968bea37ecc8a89585686e68566a875 (diff) | |
| download | miasm-7d4100ea290c0bd60ee225a401786bc856d92615.tar.gz miasm-7d4100ea290c0bd60ee225a401786bc856d92615.zip | |
Fix __ne__ calls
Diffstat (limited to '')
| -rw-r--r-- | miasm2/ir/symbexec.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/miasm2/ir/symbexec.py b/miasm2/ir/symbexec.py index 3cde2af7..4070f261 100644 --- a/miasm2/ir/symbexec.py +++ b/miasm2/ir/symbexec.py @@ -53,6 +53,9 @@ class SymbolicState(StateEngine): return False return self.symbols == other.symbols + def __ne__(self, other): + return not self.__eq__(other) + def __iter__(self): for dst, src in self._symbols: yield dst, src |