#ifdef WIFSTOPPED
static char posix_WIFSTOPPED__doc__[] =
"WIFSTOPPED(status) -> Boolean\n\
-See Unix documentation.";
+Return true if the process returning 'status' was stopped.";
static PyObject *
posix_WIFSTOPPED(self, args)
#ifdef WIFSIGNALED
static char posix_WIFSIGNALED__doc__[] =
"WIFSIGNALED(status) -> Boolean\n\
-See Unix documentation.";
+Retrun true if the process returning 'status' was terminated by a signal.";
static PyObject *
posix_WIFSIGNALED(self, args)
#ifdef WIFEXITED
static char posix_WIFEXITED__doc__[] =
"WIFEXITED(status) -> Boolean\n\
-See Unix documentation.";
+Return true if the process returning 'status' exited using the exit()\n\
+system call.";
static PyObject *
posix_WIFEXITED(self, args)
#ifdef WEXITSTATUS
static char posix_WEXITSTATUS__doc__[] =
"WEXITSTATUS(status) -> integer\n\
-See Unix documentation.";
+Return the process return code from 'status'.";
static PyObject *
posix_WEXITSTATUS(self, args)
#ifdef WTERMSIG
static char posix_WTERMSIG__doc__[] =
"WTERMSIG(status) -> integer\n\
-See Unix documentation.";
+Return the signal that terminated the process that provided the 'status'\n\
+value.";
static PyObject *
posix_WTERMSIG(self, args)
#ifdef WSTOPSIG
static char posix_WSTOPSIG__doc__[] =
"WSTOPSIG(status) -> integer\n\
-See Unix documentation.";
+Return the signal that stopped the process that provided the 'status' value.";
static PyObject *
posix_WSTOPSIG(self, args)