示例#1
0
文件: ndarray.py 项目: ropas/pytea
 def __floordiv__(self, other):
     return np._bop(self, other)
示例#2
0
文件: ndarray.py 项目: ropas/pytea
 def __rtruediv__(self, other):
     return np._bop(self, other)
示例#3
0
文件: ndarray.py 项目: ropas/pytea
 def __rmul__(self, other):
     return np._bop(self, other)
示例#4
0
文件: ndarray.py 项目: ropas/pytea
 def __rsub__(self, other):
     return np._bop(self, other)
示例#5
0
文件: ndarray.py 项目: ropas/pytea
 def __radd__(self, other):
     return np._bop(self, other)
示例#6
0
文件: ndarray.py 项目: ropas/pytea
 def __eq__(self, other):
     return np._bop(self, other)