From 5579e1e05eb1e9affe4bdc790b1a6d65adce14ee Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Sat, 24 May 2025 10:07:09 +0300 Subject: [PATCH 1/2] Remove outdated statement from math about C standard --- Doc/library/math.rst | 3 --- 1 file changed, 3 deletions(-) diff --git a/Doc/library/math.rst b/Doc/library/math.rst index 394a462b9468e5..ec98983057de36 100644 --- a/Doc/library/math.rst +++ b/Doc/library/math.rst @@ -10,9 +10,6 @@ -------------- -This module provides access to the mathematical functions defined by the C -standard. - These functions cannot be used with complex numbers; use the functions of the same name from the :mod:`cmath` module if you require support for complex numbers. The distinction between functions which support complex numbers and From 1043f269d5da492d7af798912aeb2b9f8551178e Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Tue, 27 May 2025 15:43:20 +0300 Subject: [PATCH 2/2] Add intro --- Doc/library/math.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Doc/library/math.rst b/Doc/library/math.rst index ec98983057de36..11d3b756e21322 100644 --- a/Doc/library/math.rst +++ b/Doc/library/math.rst @@ -10,6 +10,9 @@ -------------- +This module provides access to common mathematical functions and constants, +including those defined by the C standard. + These functions cannot be used with complex numbers; use the functions of the same name from the :mod:`cmath` module if you require support for complex numbers. The distinction between functions which support complex numbers and