예제 #1
0
파일: core.py 프로젝트: pvergain/xotl.ql
 def __rrshift__(self, other):
     '''
         >>> 1 >> this    # doctest: +ELLIPSIS
         <expression '1 >> this' ...>
     '''
     from xotl.ql.expressions import rshift
     return rshift(other, self)
예제 #2
0
 def __rrshift__(self, other):
     '''
         >>> 1 >> this    # doctest: +ELLIPSIS
         <expression '1 >> this' ...>
     '''
     from xotl.ql.expressions import rshift
     return rshift(other, self)
예제 #3
0
파일: core.py 프로젝트: pvergain/xotl.ql
 def __rshift__(self, other):
     '''
         >>> this >> 1    # doctest: +ELLIPSIS
         <expression 'this >> 1' ...>
     '''
     from xotl.ql.expressions import rshift
     return rshift(self, other)
예제 #4
0
 def __rshift__(self, other):
     '''
         >>> this >> 1    # doctest: +ELLIPSIS
         <expression 'this >> 1' ...>
     '''
     from xotl.ql.expressions import rshift
     return rshift(self, other)