Ejemplo n.º 1
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
Ejemplo n.º 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
Ejemplo n.º 3
0
 def __div__(self, other, context=None):
     other = self._assert_dividable(other)
     amount = Decimal.__div__(self, other)
     return self.__class__(amount)
Ejemplo n.º 4
0
 def __div__(self, other, context=None):
     return Size(Decimal.__div__(self, other, context=context))
Ejemplo n.º 5
0
 def __div__(self, other, context=None):
     if PY2:
         return TimeValue(Decimal.__div__(self, other, context))
     return TimeValue(Decimal.__div__(self, other))
Ejemplo n.º 6
0
 def __div__(self, other, context=None):
     return Size(bytes=Decimal.__div__(self, other, context=context))
Ejemplo n.º 7
0
 def __div__(self, other, context=None):
     other = self._assert_dividable(other)
     amount = Decimal.__div__(self, other)
     return self.__class__(amount)
Ejemplo n.º 8
0
 def __div__(self, other, context=None):
     if PY2:
         return TimeValue(Decimal.__div__(self, other, context))
     return TimeValue(Decimal.__div__(self, other))