コード例 #1
0
 def _upcast(self, other, inst):
     return inst.ex(self, other, type_cls=most_specific(self, other))
コード例 #2
0
ファイル: cal_types.py プロジェクト: KapilRijhwani/corepy
def _upcast(a, b, inst):
  return inst.ex(a, b, type_cls = most_specific(a, b))
コード例 #3
0
ファイル: vmx_types.py プロジェクト: KapilRijhwani/corepy
 def _upcast(self, other, inst):
   return inst.ex(self, other, type_cls = most_specific(self, other))
コード例 #4
0
ファイル: spu_types.py プロジェクト: forrestv/pyable
def _upcast(a, b, inst):
    return inst.ex(a, b, type_cls=most_specific(a, b))