GH-137623: Use an AC decorator for docstring line length enforcement (#137690)

This commit is contained in:
Adam Turner 2025-08-18 18:29:00 +01:00 committed by GitHub
parent 0324c726de
commit 918e3ba6c0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
76 changed files with 569 additions and 570 deletions

View file

@ -302,6 +302,7 @@ pwd_getpwnam_impl(PyObject *module, PyObject *name)
#ifdef HAVE_GETPWENT
/*[clinic input]
@permit_long_summary
pwd.getpwall
Return a list of all available password database entries, in arbitrary order.
@ -311,7 +312,7 @@ See help(pwd) for more on password database entries.
static PyObject *
pwd_getpwall_impl(PyObject *module)
/*[clinic end generated code: output=4853d2f5a0afac8a input=d7ecebfd90219b85]*/
/*[clinic end generated code: output=4853d2f5a0afac8a input=f8145e0d9a79e32c]*/
{
PyObject *d;
struct passwd *p;