Skip to content

Commit 9cdd231

Browse files
Update Modules/_io/bytesio.c
Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
1 parent d4d5a55 commit 9cdd231

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Modules/_io/bytesio.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,8 @@ peek_bytes(bytesio *self, Py_ssize_t size)
413413
}
414414

415415
static PyObject *
416-
read_bytes(bytesio *self, Py_ssize_t size) {
416+
read_bytes(bytesio *self, Py_ssize_t size)
417+
{
417418
PyObject *bytes = peek_bytes(self, size);
418419
self->pos += size;
419420
return bytes;

0 commit comments

Comments
 (0)