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 /Objects/clinic/bytesobject.c.h | |
parent | 687592def926df9730f75a3aa3469f4378b8fc52 (diff) | |
download | cpython-git-89964c48d1493e5fe87f1ca3ac78029cfbd3b64b.tar.gz |
Issue #23944: Argument Clinic now wraps long impl prototypes at column 78.
Diffstat (limited to 'Objects/clinic/bytesobject.c.h')
-rw-r--r-- | Objects/clinic/bytesobject.c.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/Objects/clinic/bytesobject.c.h b/Objects/clinic/bytesobject.c.h index 5f0ae05154..770221109c 100644 --- a/Objects/clinic/bytesobject.c.h +++ b/Objects/clinic/bytesobject.c.h @@ -277,7 +277,8 @@ PyDoc_STRVAR(bytes_translate__doc__, {"translate", (PyCFunction)bytes_translate, METH_VARARGS, bytes_translate__doc__}, static PyObject * -bytes_translate_impl(PyBytesObject *self, PyObject *table, int group_right_1, PyObject *deletechars); +bytes_translate_impl(PyBytesObject *self, PyObject *table, int group_right_1, + PyObject *deletechars); static PyObject * bytes_translate(PyBytesObject *self, PyObject *args) @@ -365,7 +366,8 @@ PyDoc_STRVAR(bytes_replace__doc__, {"replace", (PyCFunction)bytes_replace, METH_VARARGS, bytes_replace__doc__}, static PyObject * -bytes_replace_impl(PyBytesObject*self, Py_buffer *old, Py_buffer *new, Py_ssize_t count); +bytes_replace_impl(PyBytesObject*self, Py_buffer *old, Py_buffer *new, + Py_ssize_t count); static PyObject * bytes_replace(PyBytesObject*self, PyObject *args) @@ -411,7 +413,8 @@ PyDoc_STRVAR(bytes_decode__doc__, {"decode", (PyCFunction)bytes_decode, METH_VARARGS|METH_KEYWORDS, bytes_decode__doc__}, static PyObject * -bytes_decode_impl(PyBytesObject*self, const char *encoding, const char *errors); +bytes_decode_impl(PyBytesObject*self, const char *encoding, + const char *errors); static PyObject * bytes_decode(PyBytesObject*self, PyObject *args, PyObject *kwargs) @@ -493,4 +496,4 @@ bytes_fromhex(PyTypeObject *type, PyObject *arg) exit: return return_value; } -/*[clinic end generated code: output=b9e69e1f7c8ccd14 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=deaf886e15270679 input=a9049054013a1b77]*/ |