summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2024-07-19 09:13:08 (GMT)
committerGitHub <noreply@github.com>2024-07-19 09:13:08 (GMT)
commita45d9051ed8488b169cbcb12b036120c0e853b9c (patch)
tree7d442b10ef935a9985059da5691241f965592447 /Modules/posixmodule.c
parent225cbee8d8ced55c2edb16f9cdc73cd05bf0f67b (diff)
downloadcpython-a45d9051ed8488b169cbcb12b036120c0e853b9c.zip
cpython-a45d9051ed8488b169cbcb12b036120c0e853b9c.tar.gz
cpython-a45d9051ed8488b169cbcb12b036120c0e853b9c.tar.bz2
[3.13] gh-121905: Consistently use "floating-point" instead of "floating point" (GH-121907) (GH-122012)
(cherry picked from commit 1a0c7b9ba48a2dffb70bb0c7327abae1d3e87356)
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r--Modules/posixmodule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index f85fab3..c0a7c14 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -10585,12 +10585,12 @@ Return a collection containing process timing information.
The object returned behaves like a named tuple with these fields:
(utime, stime, cutime, cstime, elapsed_time)
-All fields are floating point numbers.
+All fields are floating-point numbers.
[clinic start generated code]*/
static PyObject *
os_times_impl(PyObject *module)
-/*[clinic end generated code: output=35f640503557d32a input=2bf9df3d6ab2e48b]*/
+/*[clinic end generated code: output=35f640503557d32a input=8dbfe33a2dcc3df3]*/
{
#ifdef MS_WINDOWS
FILETIME create, exit, kernel, user;