summaryrefslogtreecommitdiffstats
path: root/Modules/_queuemodule.c
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2023-07-01 22:27:18 (GMT)
committerGitHub <noreply@github.com>2023-07-01 22:27:18 (GMT)
commit46d77610fc77088bceac720a13d9f2df3a50f29e (patch)
tree73f82577bf72de0a3f9a663fe226707879e91349 /Modules/_queuemodule.c
parent822db860eada721742f878653d7ac9364ed8df59 (diff)
downloadcpython-46d77610fc77088bceac720a13d9f2df3a50f29e.zip
cpython-46d77610fc77088bceac720a13d9f2df3a50f29e.tar.gz
cpython-46d77610fc77088bceac720a13d9f2df3a50f29e.tar.bz2
gh-106316: Remove pytime.h header file (#106317)
Remove the "cpython/pytime.h" header file: it only contained private functions. Move functions to the internal pycore_time.h header file. Move tests from _testcapi to _testinternalcapi. Rename also test methods to have the same name than tested C functions. No longer export these functions: * _PyTime_Add() * _PyTime_As100Nanoseconds() * _PyTime_FromMicrosecondsClamp() * _PyTime_FromTimespec() * _PyTime_FromTimeval() * _PyTime_GetPerfCounterWithInfo() * _PyTime_MulDiv()
Diffstat (limited to 'Modules/_queuemodule.c')
-rw-r--r--Modules/_queuemodule.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/_queuemodule.c b/Modules/_queuemodule.c
index db5be84..69cc051 100644
--- a/Modules/_queuemodule.c
+++ b/Modules/_queuemodule.c
@@ -4,6 +4,7 @@
#include "Python.h"
#include "pycore_moduleobject.h" // _PyModule_GetState()
+#include "pycore_time.h" // _PyTime_t
#include "structmember.h" // PyMemberDef
#include <stddef.h> // offsetof()