On 8/12/07, neal.norwitz <[email protected]> wrote: > @@ -337,6 +338,8 @@ > 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); > } >
If you read carefully it can't be -1 by the time you reach this point. :-) -- --Guido van Rossum (home page: http://www.python.org/~guido/) _______________________________________________ Python-3000-checkins mailing list [email protected] http://mail.python.org/mailman/listinfo/python-3000-checkins
