From 2fe9e1cdfe48abb1927cf16187fc56c9aabb397a Mon Sep 17 00:00:00 2001 From: Sergey B Kirpichev Date: Tue, 10 Jun 2025 06:04:19 +0300 Subject: [PATCH] gh-135308: clarify math.issubnormal() description --- Doc/library/math.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/math.rst b/Doc/library/math.rst index c8061fb16380cd..ecb1d4102cac31 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