Use new PyDoc_STRVAR macro

This commit is contained in:
Neal Norwitz 2002-06-13 21:22:11 +00:00
parent cc5c6947a6
commit 0c2c17c473

View file

@ -2118,9 +2118,9 @@ posix_getgroups(PyObject *self, PyObject *args)
#endif
#ifdef HAVE_GETPGID
static char posix_getpgid__doc__[] =
PyDoc_STRVAR(posix_getpgid__doc__,
"getpgid(pid) -> pgid\n\
Call the system call getpgid().";
Call the system call getpgid().");
static PyObject *
posix_getpgid(PyObject *self, PyObject *args)