Skip to content

Commit d398717

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

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
@@ -448,7 +448,8 @@ peek_bytes_lock_held(bytesio *self, Py_ssize_t size)
448448
}
449449

450450
static PyObject *
451-
read_bytes_lock_held(bytesio *self, Py_ssize_t size) {
451+
read_bytes_lock_held(bytesio *self, Py_ssize_t size)
452+
{
452453
PyObject *bytes = peek_bytes_lock_held(self, size);
453454
self->pos += size;
454455
return bytes;

0 commit comments

Comments
 (0)