]> granicus.if.org Git - python/commitdiff
Remove a bogus comment based on the code above.
authorNeal Norwitz <nnorwitz@gmail.com>
Thu, 16 Aug 2007 05:18:31 +0000 (05:18 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Thu, 16 Aug 2007 05:18:31 +0000 (05:18 +0000)
Modules/_fileio.c

index 2895b286bf5a535eeaba174678d3576e927be065..7757af97892f67e3ed1ac521b0b69008a0af1dfb 100644 (file)
@@ -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);
 }