diff options
author | Petr Viktorin <encukou@gmail.com> | 2024-02-12 17:13:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-12 17:13:10 (GMT) |
commit | 879f4546bfbc9c47ef228e7c3d2f126f3d8d64bf (patch) | |
tree | 967b09783ee2a988eb605f9c905eedb12b691732 /PCbuild/_testcapi.vcxproj | |
parent | c39272e143b346bd6a3c04ca4fbf299163888277 (diff) | |
download | cpython-879f4546bfbc9c47ef228e7c3d2f126f3d8d64bf.zip cpython-879f4546bfbc9c47ef228e7c3d2f126f3d8d64bf.tar.gz cpython-879f4546bfbc9c47ef228e7c3d2f126f3d8d64bf.tar.bz2 |
gh-110850: Add PyTime_t C API (GH-115215)
* gh-110850: Add PyTime_t C API
Add PyTime_t API:
* PyTime_t type.
* PyTime_MIN and PyTime_MAX constants.
* PyTime_AsSecondsDouble(), PyTime_Monotonic(),
PyTime_PerfCounter() and PyTime_GetSystemClock() functions.
Co-authored-by: Victor Stinner <vstinner@python.org>
Diffstat (limited to 'PCbuild/_testcapi.vcxproj')
-rw-r--r-- | PCbuild/_testcapi.vcxproj | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/PCbuild/_testcapi.vcxproj b/PCbuild/_testcapi.vcxproj index 6911aac..66df0a6 100644 --- a/PCbuild/_testcapi.vcxproj +++ b/PCbuild/_testcapi.vcxproj @@ -125,6 +125,7 @@ <ClCompile Include="..\Modules\_testcapi\codec.c" /> <ClCompile Include="..\Modules\_testcapi\sys.c" /> <ClCompile Include="..\Modules\_testcapi\hash.c" /> + <ClCompile Include="..\Modules\_testcapi\time.c" /> <ClCompile Include="..\Modules\_testcapi\immortal.c" /> <ClCompile Include="..\Modules\_testcapi\gc.c" /> </ItemGroup> |