about summary refs log tree commit diff stats
path: root/miasm2/core/graph.py
diff options
context:
space:
mode:
authorCamille Mougey <commial@gmail.com>2018-04-19 19:26:09 +0200
committerGitHub <noreply@github.com>2018-04-19 19:26:09 +0200
commita4dbb99d5d169d79828caec9e20dc4392f9be95a (patch)
treecbba60755e94e26ac29aa2574d93358c1c73ab5c /miasm2/core/graph.py
parent145c218af968bea37ecc8a89585686e68566a875 (diff)
parent7d4100ea290c0bd60ee225a401786bc856d92615 (diff)
downloadmiasm-a4dbb99d5d169d79828caec9e20dc4392f9be95a.tar.gz
miasm-a4dbb99d5d169d79828caec9e20dc4392f9be95a.zip
Merge pull request #725 from serpilliere/fix_eq_ne
Fix __ne__ calls
Diffstat (limited to 'miasm2/core/graph.py')
-rw-r--r--miasm2/core/graph.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/miasm2/core/graph.py b/miasm2/core/graph.py
index b74717da..ce17fc75 100644
--- a/miasm2/core/graph.py
+++ b/miasm2/core/graph.py
@@ -57,6 +57,9 @@ class DiGraph(object):
         return all((self._nodes == graph.nodes(),
                     sorted(self._edges) == sorted(graph.edges())))
 
+    def __ne__(self, other):
+        return not self.__eq__(other)
+
     def add_node(self, node):
         """Add the node @node to the graph.
         If the node was already present, return False.