Python operator 模块,__div__() 实例源码

我们从Python开源项目中,提取了以下9个代码示例,用于说明如何使用operator.__div__()

项目:ntypes    作者:AlexAltea    | 项目源码 | 文件源码
def __div__(self, rhs):
        return op_binary(self, rhs, operator.__div__)
项目:ntypes    作者:AlexAltea    | 项目源码 | 文件源码
def __rdiv__(self, lhs):
        return op_binary(lhs, self, operator.__div__)
项目:ntypes    作者:AlexAltea    | 项目源码 | 文件源码
def __idiv__(self, v):
        return self.op_binary_inplace(v, operator.__div__)
项目:oil    作者:oilshell    | 项目源码 | 文件源码
def triplet_to_fractional_rgb(rgbtuple):
    return map(operator.__div__, rgbtuple, _maxtuple)
项目:python2-tracer    作者:extremecoders-re    | 项目源码 | 文件源码
def triplet_to_fractional_rgb(rgbtuple):
    return map(operator.__div__, rgbtuple, _maxtuple)
项目:cpy2py    作者:maxfischer2781    | 项目源码 | 文件源码
def __mul__(self, other):
        with self._lock:
            return operator.__mul__(self.__wrapped__, other)

    # __div__ is py2 only
项目:cpy2py    作者:maxfischer2781    | 项目源码 | 文件源码
def __div__(self, other):  # nopep8
            with self._lock:
                return operator.__div__(self.__wrapped__, other)
项目:cpy2py    作者:maxfischer2781    | 项目源码 | 文件源码
def __rdiv__(self, other):  # nopep8
            with self._lock:
                return operator.__div__(other, self.__wrapped__)
项目:enterprise-fibonacci    作者:surrsurus    | 项目源码 | 文件源码
def divide(typeA, typeB):
    return operator.__div__(typeA.number.getNum(), typeB.number.getNum())