diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2007-08-16 05:18:31 +0000 |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2007-08-16 05:18:31 +0000 |
commit | eb08df2931d7630b04e796be64e977a21a0099b3 (patch) | |
tree | 359dadf2645dfa85b5b32637ba34934676bdf037 | |
parent | cb44f268121024573e83b1405b1c368d7bd360ff (diff) | |
download | cpython-git-eb08df2931d7630b04e796be64e977a21a0099b3.tar.gz |
Remove a bogus comment based on the code above.
-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 2895b286bf..7757af9789 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); } |