From: Neal Norwitz Date: Thu, 16 Aug 2007 05:18:31 +0000 (+0000) Subject: Remove a bogus comment based on the code above. X-Git-Tag: v3.0a1~393 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eb08df2931d7630b04e796be64e977a21a0099b3;p=thirdparty%2FPython%2Fcpython.git Remove a bogus comment based on the code above. --- diff --git a/Modules/_fileio.c b/Modules/_fileio.c index 2895b286bf5a..7757af97892f 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); }