Staging
v0.5.1
https://github.com/python/cpython
Revision 3442211acefc306b5570f86cc26b2765a709390d authored by Martin v. Löwis on 07 June 2003, 19:53:55 UTC, committed by Martin v. Löwis on 07 June 2003, 19:53:55 UTC
1 parent 772db88
Raw File
Tip revision: 3442211acefc306b5570f86cc26b2765a709390d authored by Martin v. Löwis on 07 June 2003, 19:53:55 UTC
Patch #749191: Delete commands in after_cancel.
Tip revision: 3442211
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 "pyconfig.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