mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +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
|
||||
|
||||
#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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue