We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3b67fc commit e0e2d27Copy full SHA for e0e2d27
Modules/_io/fileio.c
@@ -1294,7 +1294,7 @@ static PyObject *
1294
fileio_get_blksize(PyObject *op, void *closure)
1295
{
1296
#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
1297
- fileio* self = PyFileIO_CAST(op);
+ fileio *self = PyFileIO_CAST(op);
1298
if (self->stat_atopen != NULL && self->stat_atopen->st_blksize > 1) {
1299
return PyLong_FromLong(self->stat_atopen->st_blksize);
1300
}
0 commit comments