diff options
author | Victor Stinner <vstinner@python.org> | 2023-07-01 22:27:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-01 22:27:18 (GMT) |
commit | 46d77610fc77088bceac720a13d9f2df3a50f29e (patch) | |
tree | 73f82577bf72de0a3f9a663fe226707879e91349 /Tools/build | |
parent | 822db860eada721742f878653d7ac9364ed8df59 (diff) | |
download | cpython-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 'Tools/build')
-rw-r--r-- | Tools/build/stable_abi.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Tools/build/stable_abi.py b/Tools/build/stable_abi.py index 4cd1cd9..7cba788 100644 --- a/Tools/build/stable_abi.py +++ b/Tools/build/stable_abi.py @@ -40,7 +40,6 @@ EXCLUDED_HEADERS = { "longintrepr.h", "parsetok.h", "pyatomic.h", - "pytime.h", "token.h", "ucnhash.h", } |