equal
deleted
inserted
replaced
20 """ |
20 """ |
21 __docformat__ = "restructuredtext en" |
21 __docformat__ = "restructuredtext en" |
22 |
22 |
23 from itertools import repeat |
23 from itertools import repeat |
24 |
24 |
25 from logilab.common.compat import any |
|
26 from rql import RQLSyntaxError, CoercionError |
25 from rql import RQLSyntaxError, CoercionError |
27 from rql.stmts import Union |
26 from rql.stmts import Union |
28 from rql.nodes import ETYPE_PYOBJ_MAP, etype_from_pyobj, Relation, Exists, Not |
27 from rql.nodes import ETYPE_PYOBJ_MAP, etype_from_pyobj, Relation, Exists, Not |
29 from yams import BASE_TYPES |
28 from yams import BASE_TYPES |
30 |
29 |