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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Ddecimal.py3366 def next_minus(self, context=None): member in class:Decimal
3437 ans = self.next_minus(context)
4771 def next_minus(self, a): member in class:Context
4777 >>> ExtendedContext.next_minus(Decimal('1'))
4779 >>> c.next_minus(Decimal('1E-1007'))
4781 >>> ExtendedContext.next_minus(Decimal('-1.00000003'))
4783 >>> c.next_minus(Decimal('Infinity'))
4785 >>> c.next_minus(1)
4789 return a.next_minus(context=self)

Completed in 14 milliseconds