Skip to content

Commit f2afe09

Browse files
committed
fix: fix code regen
1 parent eb0a8a4 commit f2afe09

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Objects/bytearrayobject.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1792,9 +1792,9 @@ bytearray.split
17921792
Return a list of the sections in the bytearray, using sep as the delimiter.
17931793
[clinic start generated code]*/
17941794

1795-
17961795
static PyObject *
1797-
bytearray_split_impl(PyByteArrayObject *self, PyObject *sep, Py_ssize_t maxsplit)
1796+
bytearray_split_impl(PyByteArrayObject *self, PyObject *sep,
1797+
Py_ssize_t maxsplit)
17981798
/*[clinic end generated code: output=833e2cf385d9a04d input=dd9f6e2910cc3a34]*/
17991799
{
18001800
PyObject *list = NULL;

0 commit comments

Comments
 (0)