Added FIXME and Coverage fix.

parent 2f60cbbc
...@@ -30,6 +30,7 @@ def generate_line(root, node_type): ...@@ -30,6 +30,7 @@ def generate_line(root, node_type):
int(x, -oo, oo) int(x, -oo, oo)
""" """
# FIXME: Binding order
operators = [ operators = [
('+', '-'), ('+', '-'),
('mod', ), ('mod', ),
...@@ -92,7 +93,7 @@ def generate_line(root, node_type): ...@@ -92,7 +93,7 @@ def generate_line(root, node_type):
right = '(' + right + ')' right = '(' + right + ')'
s = left + ' ' + s + ' ' + right s = left + ' ' + s + ' ' + right
else: else: # pragma: nocover
raise ValueError('arity = %d is currently not supported.' \ raise ValueError('arity = %d is currently not supported.' \
% arity) % arity)
else: else:
......
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