commit | 6fc4ade2bb44a176555703ebc2dbfb54b57e1148 | [log] [tgz] |
---|---|---|
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | Thu Aug 05 17:34:27 2010 +0000 |
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | Thu Aug 05 17:34:27 2010 +0000 |
tree | c52aa91d4f9e35bb2850ea2aea673e56eabc4ee6 | |
parent | 1c5471f319a4e5c7bbb56c7ae349b5fe455dc857 [diff] [blame] |
Issue #9079: Added _PyTime_gettimeofday(_PyTime_timeval *tp) to C API exposed in Python.h. This function is similar to POSIX gettimeofday(struct timeval *tp), but available on platforms without gettimeofday().
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index f45d7dc..79a19f8 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c
@@ -268,6 +268,8 @@ /* Initialize _warnings. */ _PyWarnings_Init(); + _PyTime_Init(); + initfsencoding(); if (install_sigs)