Added FIXME and Coverage fix.

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