From 2cefcf5576e0537f43548d218a728ab97aaab8df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beyza=20Ermi=C5=9F?= Date: Fri, 20 Jun 2008 13:21:24 +0000 Subject: [PATCH] not used --- pisi/graph.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pisi/graph.py b/pisi/graph.py index e55dd671..354f5eea 100644 --- a/pisi/graph.py +++ b/pisi/graph.py @@ -50,11 +50,6 @@ class Digraph(object): l.append( (u,v) ) return l - def from_list(self, el): - "convert a list of edges (u,v) to graph" - for (u,v) in el: - self.add_edge(u,v) - def add_vertex(self, u, data = None): "add vertex u, optionally with data" assert not u in self.__v