aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsienkiew <sienkiew@d34015c8-bcbb-4646-8ac8-8ba5febf221d>2012-10-11 12:43:01 -0400
committersienkiew <sienkiew@d34015c8-bcbb-4646-8ac8-8ba5febf221d>2012-10-11 12:43:01 -0400
commit73aa1ff4f9efbd03bef44db7676f0b4fe87be06f (patch)
tree2640dd5f2ac2ce81985bac5a1b18990f887836b0
parent864374ca26c54d4b1df6a9e4b99e5cf0b0f0ba12 (diff)
downloadsteuermann-73aa1ff4f9efbd03bef44db7676f0b4fe87be06f.tar.gz
turn off debugging
git-svn-id: https://svn.stsci.edu/svn/ssb/etal/steuermann/trunk@812 d34015c8-bcbb-4646-8ac8-8ba5febf221d
-rw-r--r--steuermann/nodes.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/steuermann/nodes.py b/steuermann/nodes.py
index cfab1c0..e364f57 100644
--- a/steuermann/nodes.py
+++ b/steuermann/nodes.py
@@ -268,7 +268,7 @@ def c_d_fn(x,depth) :
print "error: loop detected at",x.name
return
- print '>'," "*depth, depth, x.name
+ # print '>'," "*depth, depth, x.name
# if it is already deeper than where we are now, we can (must)
# prune the tree walk here.
@@ -290,7 +290,7 @@ def c_d_fn(x,depth) :
for y in x.successors :
c_d_fn(y,depth)
- print '<'," "*depth, depth, x.name
+ # print '<'," "*depth, depth, x.name
x.in_recursion = 0
def compute_depths(nodes) :