Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71694d5 commit b28e916Copy full SHA for b28e916
1 file changed
Include/pytime.h
@@ -35,16 +35,6 @@ typedef struct {
35
*/
36
PyAPI_FUNC(void) _PyTime_gettimeofday(_PyTime_timeval *tp);
37
38
-/* Similar to _PyTime_gettimeofday() but retrieve also information on the
39
- * clock used to get the current time. */
40
-PyAPI_FUNC(int) _PyTime_gettimeofday_info(
41
- _PyTime_timeval *tp,
42
- _Py_clock_info_t *info);
43
-
44
-#define _PyTime_INTERVAL(tv_start, tv_end) \
45
- ((tv_end.tv_sec - tv_start.tv_sec) + \
46
- (tv_end.tv_usec - tv_start.tv_usec) * 0.000001)
47
48
typedef enum {
49
/* Round towards zero. */
50
_PyTime_ROUND_DOWN=0,
0 commit comments