From 6fe20b3aee076850e390ef8bb2078b1cd09ddf88 Mon Sep 17 00:00:00 2001 From: Larry Hastings Date: Thu, 19 Apr 2012 15:07:49 -0700 Subject: Issue #14127: Add st_{cma}time_ns fields to os.stat() result object. --- Include/pytime.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Include/pytime.h') diff --git a/Include/pytime.h b/Include/pytime.h index 0473dc738f..221279b3fc 100644 --- a/Include/pytime.h +++ b/Include/pytime.h @@ -44,6 +44,10 @@ PyAPI_FUNC(int) _PyTime_ObjectToTime_t( PyObject *obj, time_t *sec); +/* Convert a time_t to a PyLong. */ +PyAPI_FUNC(PyObject *) _PyLong_FromTime_t( + time_t sec); + /* Convert a number of seconds, int or float, to a timeval structure. usec is in the range [0; 999999] and rounded towards zero. For example, -1.2 is converted to (-2, 800000). */ -- cgit v1.2.1