Kaydet (Commit) 0c2c17c4 authored tarafından Neal Norwitz's avatar Neal Norwitz

Use new PyDoc_STRVAR macro

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