Searched defs:same_quantum (Results 1 - 2 of 2) sorted by relevance

/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A Ddecimal.py2493 def same_quantum(self, other): member in class:Decimal
5212 def same_quantum(self, a, b): member in class:Context
5218 >>> ExtendedContext.same_quantum(Decimal('2.17'), Decimal('0.001'))
5220 >>> ExtendedContext.same_quantum(Decimal('2.17'), Decimal('0.01'))
5222 >>> ExtendedContext.same_quantum(Decimal('2.17'), Decimal('1'))
5224 >>> ExtendedContext.same_quantum(Decimal('Inf'), Decimal('-Inf'))
5226 >>> ExtendedContext.same_quantum(10000, -1)
5228 >>> ExtendedContext.same_quantum(Decimal(10000), -1)
5230 >>> ExtendedContext.same_quantum(10000, Decimal(-1))
5234 return a.same_quantum(
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A Ddecimal.py2493 def same_quantum(self, other): member in class:Decimal
5212 def same_quantum(self, a, b): member in class:Context
5218 >>> ExtendedContext.same_quantum(Decimal('2.17'), Decimal('0.001'))
5220 >>> ExtendedContext.same_quantum(Decimal('2.17'), Decimal('0.01'))
5222 >>> ExtendedContext.same_quantum(Decimal('2.17'), Decimal('1'))
5224 >>> ExtendedContext.same_quantum(Decimal('Inf'), Decimal('-Inf'))
5226 >>> ExtendedContext.same_quantum(10000, -1)
5228 >>> ExtendedContext.same_quantum(Decimal(10000), -1)
5230 >>> ExtendedContext.same_quantum(10000, Decimal(-1))
5234 return a.same_quantum(
[all...]

Completed in 39 milliseconds