From: Sergey B Kirpichev Date: Fri, 13 Jun 2025 06:30:44 +0000 (+0300) Subject: gh-135308: clarify math.issubnormal() description (GH-135324) X-Git-Tag: v3.15.0a1~1317 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=747d390045036325a7dbce12f7f0a4bc9c84c68a;p=thirdparty%2FPython%2Fcpython.git gh-135308: clarify math.issubnormal() description (GH-135324) --- diff --git a/Doc/library/math.rst b/Doc/library/math.rst index c8061fb16380..ecb1d4102cac 100644 --- a/Doc/library/math.rst +++ b/Doc/library/math.rst @@ -387,8 +387,8 @@ Floating point manipulation functions .. function:: issubnormal(x) Return ``True`` if *x* is a subnormal number, that is a finite - nonzero number with a magnitude smaller than the smallest positive normal - number, see :data:`sys.float_info.min`. Return ``False`` otherwise. + nonzero number with a magnitude smaller than :data:`sys.float_info.min`. + Return ``False`` otherwise. .. versionadded:: next