Excluded verbose message printing from coverage.

parent 02452126
...@@ -74,13 +74,13 @@ def match_combine_polynomes(node, verbose=False): ...@@ -74,13 +74,13 @@ def match_combine_polynomes(node, verbose=False):
# (root, exponent, coefficient, literal_coefficient) # (root, exponent, coefficient, literal_coefficient)
polys = [] polys = []
if verbose: if verbose: # pragma: nocover
print 'match combine factors:', node print 'match combine factors:', node
for n in node.get_scope(): for n in node.get_scope():
polynome = n.extract_polynome_properties() polynome = n.extract_polynome_properties()
if verbose: if verbose: # pragma: nocover
print 'n:', n, 'polynome:', polynome print 'n:', n, 'polynome:', polynome
if polynome: if polynome:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment