Reader
The Reader class is accessible via the pylogo.oobuiltins module.
Methods
f setreadpos(self, charpos) ...
SETREADPOS charpos
command. Sets the file pointer of the read stream file so that the next READLIST, etc., will begin reading at the charpos character in the file, counting from 0. (That is, SETREADPOS 0 will start reading from the beginning of the file.) Meaningless if the read stream is the terminal.
f eofp(self) ...
EOFP EOF?
predicate, outputs TRUE if there are no more characters to be read in the read stream file, FALSE otherwise.
See the source for more information.