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 ngie
Recipients ngie, steven.daprano
Date 2019-02-26.00:29:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1551140977.21.0.833800694271.issue36111@roundup.psfhosted.org>
In-reply-to
Content
Opening and seeking using SEEK_END worked in text mode with python 2.7. I'm not terribly sure why 3.x should depart from this behavior:

>>> fp = open("configure", "rt"); fp.seek(-100, os.SEEK_END)
>>> fp.tell()
501076
History
Date User Action Args
2019-02-26 00:29:37ngiesetrecipients: + ngie, steven.daprano
2019-02-26 00:29:37ngiesetmessageid: <1551140977.21.0.833800694271.issue36111@roundup.psfhosted.org>
2019-02-26 00:29:37ngielinkissue36111 messages
2019-02-26 00:29:37ngiecreate