summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-03-28 03:09:41 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2015-03-28 03:09:41 (GMT)
commitb3b454407058cd57d8a401a5aeb018d4ccb87616 (patch)
treeb1e53ecf7dd67abfd8b1573e16c02210391f06d1 /Include
parentc337838af798354603457043e2ad8cfd3cbea36e (diff)
downloadcpython-b3b454407058cd57d8a401a5aeb018d4ccb87616.zip
cpython-b3b454407058cd57d8a401a5aeb018d4ccb87616.tar.gz
cpython-b3b454407058cd57d8a401a5aeb018d4ccb87616.tar.bz2
Issue #22117: Use the _PyTime_t API for time.clock_settime()
Remove also the now unused _PyTime_AddDouble() function.
Diffstat (limited to 'Include')
-rw-r--r--Include/pytime.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/Include/pytime.h b/Include/pytime.h
index 6edffbd..654623e 100644
--- a/Include/pytime.h
+++ b/Include/pytime.h
@@ -74,11 +74,6 @@ PyAPI_FUNC(int) _PyTime_ObjectToTimespec(
long *nsec,
_PyTime_round_t);
-/* Add interval seconds to tv */
-PyAPI_FUNC(void)
-_PyTime_AddDouble(_PyTime_timeval *tv, double interval,
- _PyTime_round_t round);
-
/* Initialize time.
Return 0 on success, raise an exception and return -1 on error. */
PyAPI_FUNC(int) _PyTime_Init(void);