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 pitrou
Recipients docs@python, martin.panter, pitrou, quentel, terry.reedy
Date 2011-12-22.07:50:23
SpamBayes Score 1.036432e-05
Marked as misclassified No
Message-id <1324540224.22.0.251810642823.issue12922@psf.upfronthosting.co.za>
In-reply-to
Content
I would rather document it in TextIOBase:
http://docs.python.org/dev/library/io.html#io.TextIOBase

With text I/O streams, tell() returns an arbitrary "position cookie", meaning you can't meaningfully do arithmetic on it: this is why cur-relative seeking and end-relative seeking isn't supported.

Of course, on StringIO the "arbitrary position cookie" is a perfectly well-defined character offset, so we *could* specifically enhance StringIO.tell. Whether it's a good idea to do it (while arbitrary text files would still have the limitation) is left to debate.
History
Date User Action Args
2011-12-22 07:50:24pitrousetrecipients: + pitrou, terry.reedy, docs@python, quentel, martin.panter
2011-12-22 07:50:24pitrousetmessageid: <1324540224.22.0.251810642823.issue12922@psf.upfronthosting.co.za>
2011-12-22 07:50:23pitroulinkissue12922 messages
2011-12-22 07:50:23pitroucreate