Commit 0318fd60 authored by Roger E. Masse's avatar Roger E. Masse

Moved the definition of posix_times__doc__ to outside of #ifdef HAVE_TIMES

so that MSVC 4.2 doesn't complain under NT.
parent 1830afb4
......@@ -1459,9 +1459,6 @@ posix_symlink(self, args)
#ifndef HZ
#define HZ 60 /* Universal constant :-) */
#endif /* HZ */
static char posix_times__doc__[] =
"times() -> (utime, stime, cutime, cstime, elapsed_time)\n\
Return a tuple of floating point numbers indicating process times.";
static PyObject *
posix_times(self, args)
......@@ -1506,6 +1503,9 @@ posix_times(self, args)
(double)0);
}
#endif /* MS_WIN32 */
static char posix_times__doc__[] =
"times() -> (utime, stime, cutime, cstime, elapsed_time)\n\
Return a tuple of floating point numbers indicating process times.";
#ifdef HAVE_SETSID
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment