diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2017-04-21 19:38:48 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-04-21 19:38:48 +0200 |
| commit | 19aaed86a09be0bc1a4a79d2077b74b962e4d8ef (patch) | |
| tree | b593d0e967424f3f02eb12c0a192ece4a26321fa /miasm2/core/graph.py | |
| parent | 43f4c43cd521c9637b65fec1628d1618a612d2e1 (diff) | |
| parent | 18ee3f9f2628c4fd98c46898895fb61021e23e3a (diff) | |
| download | miasm-19aaed86a09be0bc1a4a79d2077b74b962e4d8ef.tar.gz miasm-19aaed86a09be0bc1a4a79d2077b74b962e4d8ef.zip | |
Merge pull request #535 from commial/fix/match_expr-uses
Remove deprecated use of MatchExpr
Diffstat (limited to 'miasm2/core/graph.py')
| -rw-r--r-- | miasm2/core/graph.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/core/graph.py b/miasm2/core/graph.py index ec9eac36..c64c7b72 100644 --- a/miasm2/core/graph.py +++ b/miasm2/core/graph.py @@ -753,7 +753,7 @@ class MatchGraphJoker(object): class MatchGraph(DiGraph): - """MatchGraph intends to be the counterpart of MatchExpr, but for DiGraph + """MatchGraph intends to be the counterpart of match_expr, but for DiGraph This class provides API to match a given DiGraph pattern, with addidionnal restrictions. |