Staging
v0.8.1
https://github.com/python/cpython
Revision fe385251f429dccddeb212f5ad02c026fe4a6550 authored by Thomas Wouters on 19 January 2001, 23:16:56 UTC, committed by Thomas Wouters on 19 January 2001, 23:16:56 UTC
ctime, gmtime and localtime optional, defaulting to 'the current time' in
all cases. Adjust docs, add news item. Also convert all argument-handling to
METH_VARARGS. Closes SF patch #103265.
1 parent 5566c1c
Raw File
Tip revision: fe385251f429dccddeb212f5ad02c026fe4a6550 authored by Thomas Wouters on 19 January 2001, 23:16:56 UTC
Make the 'time' argument to the timemodule functions strftime, asctime,
Tip revision: fe38525
getmtime.c

/* Subroutine to get the last modification time of a file */

/* (A separate file because this may be OS dependent) */

#include "Python.h"
#include "config.h"

time_t
PyOS_GetLastModificationTime(char *path, FILE *fp)
{
	struct stat st;
	if (fstat(fileno(fp), &st) != 0)
		return -1;
	else
		return st.st_mtime;
}
back to top