diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2010-04-06 22:13:37 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2010-04-06 22:13:37 (GMT) |
commit | 42dfeec893fb924cb8dda2a0bddf3fd54ab3c9e3 (patch) | |
tree | d6f5cd0c35978383d81a166537cdddce622b58aa /Doc/library/math.rst | |
parent | d856ab6171d117c2f02ed90f3e2b389319ee9ef0 (diff) | |
download | cpython-42dfeec893fb924cb8dda2a0bddf3fd54ab3c9e3.zip cpython-42dfeec893fb924cb8dda2a0bddf3fd54ab3c9e3.tar.gz cpython-42dfeec893fb924cb8dda2a0bddf3fd54ab3c9e3.tar.bz2 |
Merged revisions 79871 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r79871 | mark.dickinson | 2010-04-06 23:10:55 +0100 (Tue, 06 Apr 2010) | 2 lines
Use consistent spelling for nans (thanks Georg for noticing).
........
Diffstat (limited to 'Doc/library/math.rst')
-rw-r--r-- | Doc/library/math.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/math.rst b/Doc/library/math.rst index e645c52..09bccbc 100644 --- a/Doc/library/math.rst +++ b/Doc/library/math.rst @@ -351,9 +351,9 @@ Constants are some exceptions to this rule, for example ``pow(float('nan'), 0.0)`` or ``hypot(float('nan'), float('inf'))``. - Note that Python makes no effort to distinguish signaling nans from - quiet nans, and behavior for signaling nans remains unspecified. - Typical behavior is to treat all nans as though they were quiet. + Note that Python makes no effort to distinguish signaling NaNs from + quiet NaNs, and behavior for signaling NaNs remains unspecified. + Typical behavior is to treat all NaNs as though they were quiet. .. seealso:: |