]> granicus.if.org Git - python/commit
Issue #9079: Added _PyTime_gettimeofday(_PyTime_timeval *tp) to C API
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>
Thu, 5 Aug 2010 17:34:27 +0000 (17:34 +0000)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>
Thu, 5 Aug 2010 17:34:27 +0000 (17:34 +0000)
commit6fc4ade2bb44a176555703ebc2dbfb54b57e1148
treec52aa91d4f9e35bb2850ea2aea673e56eabc4ee6
parent1c5471f319a4e5c7bbb56c7ae349b5fe455dc857
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().
Include/Python.h
Include/pytime.h [new file with mode: 0644]
Makefile.pre.in
Modules/_datetimemodule.c
Modules/timemodule.c
PCbuild/pythoncore.vcproj
Python/pythonrun.c
Python/pytime.c [new file with mode: 0644]