diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2015-02-20 23:20:12 +0100 |
|---|---|---|
| committer | serpilliere <serpilliere@users.noreply.github.com> | 2015-02-20 23:20:12 +0100 |
| commit | f8e5ad9e5a7663451b01f67094e70e530d78e205 (patch) | |
| tree | 5ad2b027928fefd987c1b6b94900feec8f4c1be8 /miasm2/core | |
| parent | 1db45ff969a41d0576cf00f00f7b59e1bb332de2 (diff) | |
| parent | d1a564fa53762961d9f54d24d9cea64f3eb84ff6 (diff) | |
| download | miasm-f8e5ad9e5a7663451b01f67094e70e530d78e205.tar.gz miasm-f8e5ad9e5a7663451b01f67094e70e530d78e205.zip | |
Merge pull request #82 from commial/feature-depgraph
Feature: dependency graphs
Diffstat (limited to 'miasm2/core')
| -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 2b873ad9..b25907e5 100644 --- a/miasm2/core/graph.py +++ b/miasm2/core/graph.py @@ -1,6 +1,6 @@ from collections import defaultdict -class DiGraph: +class DiGraph(object): """Implementation of directed graph""" def __init__(self): |