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 xtreak
Recipients erik.bray, serhiy.storchaka, xtreak
Date 2018-10-05.12:21:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1538742076.24.0.545547206417.issue34904@psf.upfronthosting.co.za>
In-reply-to
Content
Thanks Erik for the details. On Mac with master also it works like Cygwin.

./python.exe
Python 3.8.0a0 (heads/master:6f85b826b5, Oct  4 2018, 22:44:36)
[Clang 7.0.2 (clang-700.1.81)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> f = open('/dev/null', 'wb')
>>> f.seekable()
True
>>> f.write(b'abcdefgh')
8
>>> f.tell()
8
>>> f.seek(8)
8
>>> f.tell()
8
History
Date User Action Args
2018-10-05 12:21:16xtreaksetrecipients: + xtreak, erik.bray, serhiy.storchaka
2018-10-05 12:21:16xtreaksetmessageid: <1538742076.24.0.545547206417.issue34904@psf.upfronthosting.co.za>
2018-10-05 12:21:16xtreaklinkissue34904 messages
2018-10-05 12:21:16xtreakcreate