summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2007-08-16 05:18:31 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2007-08-16 05:18:31 (GMT)
commiteb08df2931d7630b04e796be64e977a21a0099b3 (patch)
tree359dadf2645dfa85b5b32637ba34934676bdf037
parentcb44f268121024573e83b1405b1c368d7bd360ff (diff)
downloadcpython-eb08df2931d7630b04e796be64e977a21a0099b3.zip
cpython-eb08df2931d7630b04e796be64e977a21a0099b3.tar.gz
cpython-eb08df2931d7630b04e796be64e977a21a0099b3.tar.bz2
Remove a bogus comment based on the code above.
-rw-r--r--Modules/_fileio.c2
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);
}