From: Neal Norwitz Date: Thu, 13 Jun 2002 21:22:11 +0000 (+0000) Subject: Use new PyDoc_STRVAR macro X-Git-Tag: v2.3c1~5331 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0c2c17c4730cbb7c58b16d2890c7f9ef1fe7e7a9;p=thirdparty%2FPython%2Fcpython.git Use new PyDoc_STRVAR macro --- diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index a7a7ddd3988c..f3d951a8db0a 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -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)