Skip to content

Commit b8a7f89

Browse files
committed
be curly
1 parent eab9742 commit b8a7f89

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

‎Modules/_io/iobase.c‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -964,8 +964,9 @@ _io__RawIOBase_readall_impl(PyObject *self)
964964
{
965965
PyBytesWriter *writer = PyBytesWriter_Create(0);
966966

967-
if (writer == NULL)
967+
if (writer == NULL) {
968968
return NULL;
969+
}
969970

970971
while (1) {
971972
PyObject *data = _PyObject_CallMethod(self, &_Py_ID(read),

0 commit comments

Comments
 (0)