diff options
author | Larry Hastings <larry@hastings.org> | 2015-04-14 18:07:59 -0400 |
---|---|---|
committer | Larry Hastings <larry@hastings.org> | 2015-04-14 18:07:59 -0400 |
commit | 89964c48d1493e5fe87f1ca3ac78029cfbd3b64b (patch) | |
tree | 9eaf0ab850b9868a6529905f0f3642fb45da0c10 /Modules/clinic/fcntlmodule.c.h | |
parent | Merge: #23925: stop (eg) PYTHONSTARTUP from causing test_cmd_line failure. (diff) | |
download | cpython-89964c48d1493e5fe87f1ca3ac78029cfbd3b64b.tar.gz cpython-89964c48d1493e5fe87f1ca3ac78029cfbd3b64b.tar.bz2 cpython-89964c48d1493e5fe87f1ca3ac78029cfbd3b64b.zip |
Issue #23944: Argument Clinic now wraps long impl prototypes at column 78.
Diffstat (limited to 'Modules/clinic/fcntlmodule.c.h')
-rw-r--r-- | Modules/clinic/fcntlmodule.c.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Modules/clinic/fcntlmodule.c.h b/Modules/clinic/fcntlmodule.c.h index d2c36bab561..2a1f8aa0243 100644 --- a/Modules/clinic/fcntlmodule.c.h +++ b/Modules/clinic/fcntlmodule.c.h @@ -79,7 +79,8 @@ PyDoc_STRVAR(fcntl_ioctl__doc__, {"ioctl", (PyCFunction)fcntl_ioctl, METH_VARARGS, fcntl_ioctl__doc__}, static PyObject * -fcntl_ioctl_impl(PyModuleDef *module, int fd, unsigned int code, PyObject *ob_arg, int mutate_arg); +fcntl_ioctl_impl(PyModuleDef *module, int fd, unsigned int code, + PyObject *ob_arg, int mutate_arg); static PyObject * fcntl_ioctl(PyModuleDef *module, PyObject *args) @@ -163,7 +164,8 @@ PyDoc_STRVAR(fcntl_lockf__doc__, {"lockf", (PyCFunction)fcntl_lockf, METH_VARARGS, fcntl_lockf__doc__}, static PyObject * -fcntl_lockf_impl(PyModuleDef *module, int fd, int code, PyObject *lenobj, PyObject *startobj, int whence); +fcntl_lockf_impl(PyModuleDef *module, int fd, int code, PyObject *lenobj, + PyObject *startobj, int whence); static PyObject * fcntl_lockf(PyModuleDef *module, PyObject *args) @@ -184,4 +186,4 @@ fcntl_lockf(PyModuleDef *module, PyObject *args) exit: return return_value; } -/*[clinic end generated code: output=ec482672292aab0c input=a9049054013a1b77]*/ +/*[clinic end generated code: output=badaa968eb04410d input=a9049054013a1b77]*/ |