[Checkins] SVN: z3c.recipe.depgraph/trunk/ Do not preserve degenerate nodes for sccmap, as graphs become
Martijn Faassen
faassen at startifact.com
Tue May 19 08:35:34 EDT 2009
Log message for revision 100125:
Do not preserve degenerate nodes for sccmap, as graphs become
harder to read.
Changed:
U z3c.recipe.depgraph/trunk/CHANGES.txt
U z3c.recipe.depgraph/trunk/src/z3c/recipe/depgraph/runner.py
-=-
Modified: z3c.recipe.depgraph/trunk/CHANGES.txt
===================================================================
--- z3c.recipe.depgraph/trunk/CHANGES.txt 2009-05-19 11:35:34 UTC (rev 100124)
+++ z3c.recipe.depgraph/trunk/CHANGES.txt 2009-05-19 12:35:34 UTC (rev 100125)
@@ -4,6 +4,8 @@
0.2 (unreleased)
----------------
+- Do not use ``-d`` option for degenerate nodes for sccmap, as this
+ creates way too much extra information.
0.1 (2009-04-26)
----------------
Modified: z3c.recipe.depgraph/trunk/src/z3c/recipe/depgraph/runner.py
===================================================================
--- z3c.recipe.depgraph/trunk/src/z3c/recipe/depgraph/runner.py 2009-05-19 11:35:34 UTC (rev 100124)
+++ z3c.recipe.depgraph/trunk/src/z3c/recipe/depgraph/runner.py 2009-05-19 12:35:34 UTC (rev 100125)
@@ -3,7 +3,7 @@
GENERATE = "./bin/%(scriptname)s -x -d %(package)s -i setuptools > %(output)s"
TRED = "tred %(input)s > %(output)s"
GRAPH = "dot -Tsvg %(input)s > %(output)s"
-SCCMAP = "sccmap -d %(input)s > %(output)s"
+SCCMAP = "sccmap %(input)s > %(output)s"
SCCGRAPH = "dot -Tsvg %(input)s -O"
PACKAGE_EXCEPTIONS = {
More information about the Checkins
mailing list