This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author r.david.murray
Recipients ezio.melotti, r.david.murray, socketpair, vstinner
Date 2015-12-14.22:42:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1450132960.72.0.871197554806.issue25849@psf.upfronthosting.co.za>
In-reply-to
Content
I think you haven't quite gotten what "opaque token" means in this context.  The way you use tell/seek with text files is: you have read to some certain point in the file.  You call 'tell' and get back an opqaue token.  Later you can call seek with that token to get back to the place in the file that you "bookmarked".  It will never be between characters, because tell won't return such a poitner.  If you decide to call seek with something (other than 0) that you didn't get from tell, then you are on your own.
History
Date User Action Args
2015-12-14 22:42:40r.david.murraysetrecipients: + r.david.murray, vstinner, ezio.melotti, socketpair
2015-12-14 22:42:40r.david.murraysetmessageid: <1450132960.72.0.871197554806.issue25849@psf.upfronthosting.co.za>
2015-12-14 22:42:40r.david.murraylinkissue25849 messages
2015-12-14 22:42:40r.david.murraycreate