示例#1
0
文件: core.py 项目: pvergain/xotl.ql
 def __rand__(self, other):
     '''
         >>> 1 & this     # doctest: +ELLIPSIS
         <expression '1 and this' ...>
     '''
     from xotl.ql.expressions import and_
     return and_(other, self)
示例#2
0
文件: core.py 项目: pvergain/xotl.ql
 def __and__(self, other):
     '''
         >>> this & 1     # doctest: +ELLIPSIS
         <expression 'this and 1' ...>
     '''
     from xotl.ql.expressions import and_
     return and_(self, other)
示例#3
0
 def __rand__(self, other):
     '''
         >>> 1 & this     # doctest: +ELLIPSIS
         <expression '1 and this' ...>
     '''
     from xotl.ql.expressions import and_
     return and_(other, self)
示例#4
0
 def __and__(self, other):
     '''
         >>> this & 1     # doctest: +ELLIPSIS
         <expression 'this and 1' ...>
     '''
     from xotl.ql.expressions import and_
     return and_(self, other)
示例#5
0
 def test_expression(self):
     from xotl.ql.expressions import (count, ExpressionTree, or_, and_,
                                      pow_, lt, eq, add)
     expr = ((q(1) < 3) & (1 == q("1")) |
             (q("a") + q("b") ** 2 == q("x") + count("y")))
     expected = or_(and_(lt(1, 3), eq(1, "1")),
                    eq(add("a", pow_("b", 2)), add("x", count("y"))))
     self.assertIsInstance(expr, ExpressionTree)
     with context(UNPROXIFING_CONTEXT):
         self.assertTrue(expr == expected, "%s ---- %s" % (expected, expr))
示例#6
0
 def test_expression(self):
     from xotl.ql.expressions import (count, ExpressionTree, or_, and_,
                                      pow_, lt, eq, add)
     expr = ((q(1) < 3) & (1 == q("1")) |
             (q("a") + q("b")**2 == q("x") + count("y")))
     expected = or_(and_(lt(1, 3), eq(1, "1")),
                    eq(add("a", pow_("b", 2)), add("x", count("y"))))
     self.assertIsInstance(expr, ExpressionTree)
     with context(UNPROXIFING_CONTEXT):
         self.assertTrue(expr == expected, "%s ---- %s" % (expected, expr))