summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/lib.py b/lib.py
index fd39ce2..c200a86 100644
--- a/lib.py
+++ b/lib.py
@@ -121,19 +121,12 @@ class EdgeInvisible(LibEdge):
# main-helpers
#
-def export(fnc):
- __all__.append(fnc.__name__)
- return fnc
-
-
-@export
def gen_graph(graph, blacklist=(), **kwargs):
# can eventually restore the state
BLACKLIST[:] = blacklist
return graph()
-@export
def xdot_graph(*args, **kwargs):
import gtk
import gtk.gdk
@@ -271,7 +264,6 @@ def xdot_graph(*args, **kwargs):
gtk.main()
-@export
def main(graph, argv, *args, **kws):
# -x deprecated, supported for backward compatibility
x, argv = (1, argv[1:]) if len(argv) <= 1 or argv[1] == '-x' else (0, argv)