mirror of
https://github.com/python/cpython.git
synced 2025-11-10 14:31:24 +00:00
Use new PyDoc_STRVAR macro
This commit is contained in:
parent
cc5c6947a6
commit
0c2c17c473
1 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue