mirror of
https://github.com/python/cpython.git
synced 2025-08-17 23:31:09 +00:00
Merged revisions 75561 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r75561 | mark.dickinson | 2009-10-20 14:33:03 +0100 (Tue, 20 Oct 2009) | 3 lines Issue #7099: Decimal.is_normal should return True for all nonzero finite non-subnormal values, even those with exponent > Emax. ........
This commit is contained in:
parent
f3a0ff61e0
commit
20a7cfcaa1
3 changed files with 16 additions and 13 deletions
|
@ -2874,7 +2874,7 @@ class Decimal(object):
|
|||
return False
|
||||
if context is None:
|
||||
context = getcontext()
|
||||
return context.Emin <= self.adjusted() <= context.Emax
|
||||
return context.Emin <= self.adjusted()
|
||||
|
||||
def is_qnan(self):
|
||||
"""Return True if self is a quiet NaN; otherwise return False."""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue