autopep8: F841 undefined name
Special cases:
- `long` and `unicode` no longer exist in python 3. I added a "# noqa"
comment to avoid warnings.
- `cmp` method no longer exist in python 3. It was used in the
`test/unittest_analyze.py` file in the __cmp__ method. It appears that
when this method is removed, all the tests are still valid. Therefore I
dropped it.
# copyright 2004-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
# contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
#
# This file is part of rql.
#
# rql is free software: you can redistribute it and/or modify it under the
# terms of the GNU Lesser General Public License as published by the Free
# Software Foundation, either version 2.1 of the License, or (at your option)
# any later version.
#
# rql is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
# A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public License along
# with rql. If not, see <http://www.gnu.org/licenses/>.
from __future__ import print_function
from rql.rqlparse import parse as cparse
from rql import parse
from rql.compare2 import make_canon_dict
import sys
from rql.nodes import *
from rql.stmts import *
from pprint import pprint
builder = {
"Constant": Constant,
"Function": Function,
"Relation": Relation,
"Comparison": Comparison,
"And": AND,
"Or": OR,
"VariableRef": VariableRef,
"Insert": Insert,
"Select": Select,
"Delete": Delete,
"Update": Update,
"MathExpression": MathExpression,
"Sort": Sort,
"Sortterm": SortTerm,
}
f = file(sys.argv[1])
for l in f:
# print(l, end="")
x1 = cparse(l, builder)
x2 = parse(l)
l = l.strip()
d1 = make_canon_dict(x1)
d2 = make_canon_dict(x2)
t = d1 == d2
print('%s : "%s"' % (t, l))
if not t:
print("CPP", x1)
pprint(d1)
print("PYT", x2)
pprint(d2)