示例#1
0
文件: core.py 项目: pvergain/xotl.ql
 def __rsub__(self, other):
     '''
         >>> 1 - this      # doctest: +ELLIPSIS
         <expression '1 - this' ...>
     '''
     from xotl.ql.expressions import sub
     return sub(other, self)
示例#2
0
 def __rsub__(self, other):
     '''
         >>> 1 - this      # doctest: +ELLIPSIS
         <expression '1 - this' ...>
     '''
     from xotl.ql.expressions import sub
     return sub(other, self)
示例#3
0
文件: core.py 项目: pvergain/xotl.ql
 def __sub__(self, other):
     '''
         >>> this - 1      # doctest: +ELLIPSIS
         <expression 'this - 1' ...>
     '''
     from xotl.ql.expressions import sub
     return sub(self, other)
示例#4
0
 def __sub__(self, other):
     '''
         >>> this - 1      # doctest: +ELLIPSIS
         <expression 'this - 1' ...>
     '''
     from xotl.ql.expressions import sub
     return sub(self, other)