diff options
Diffstat (limited to 'Modules/_fileio.c')
-rw-r--r-- | Modules/_fileio.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Modules/_fileio.c b/Modules/_fileio.c index 2895b28..7757af9 100644 --- a/Modules/_fileio.c +++ b/Modules/_fileio.c @@ -338,8 +338,6 @@ fileio_seekable(PyFileIOObject *self) else self->seekable = 1; } - /* XXX(nnorwitz): should this return an int rather than a bool, - since seekable could be -1, 0, or 1? */ return PyBool_FromLong((long) self->seekable); } |