示例#1
0
文件: size.py 项目: cgwalters/blivet
 def __div__(self, other, context=None):
     if six.PY2:
         # This still needs to be ignored by pylint, because it will get
         # through the above guard.
         return Size(Decimal.__div__(self, other))   # pylint: disable=no-member
     else:
         raise AttributeError
示例#2
0
 def __div__(self, other, context=None):
     if six.PY2:
         # This still needs to be ignored by pylint, because it will get
         # through the above guard.
         return Size(Decimal.__div__(self, other))  # pylint: disable=no-member
     else:
         raise AttributeError
示例#3
0
 def __div__(self, other, context=None):
     other = self._assert_dividable(other)
     amount = Decimal.__div__(self, other)
     return self.__class__(amount)
示例#4
0
文件: size.py 项目: ryanlerch/blivet
 def __div__(self, other, context=None):
     return Size(Decimal.__div__(self, other, context=context))
示例#5
0
 def __div__(self, other, context=None):
     if PY2:
         return TimeValue(Decimal.__div__(self, other, context))
     return TimeValue(Decimal.__div__(self, other))
示例#6
0
 def __div__(self, other, context=None):
     return Size(bytes=Decimal.__div__(self, other, context=context))
示例#7
0
 def __div__(self, other, context=None):
     other = self._assert_dividable(other)
     amount = Decimal.__div__(self, other)
     return self.__class__(amount)
示例#8
0
 def __div__(self, other, context=None):
     if PY2:
         return TimeValue(Decimal.__div__(self, other, context))
     return TimeValue(Decimal.__div__(self, other))