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 takluyver
Recipients Dhiraj_Mishra, martin.panter, mbussonn, python-dev, serhiy.storchaka, socketpair, takluyver
Date 2016-04-25.11:20:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1461583231.33.0.31785233517.issue26039@psf.upfronthosting.co.za>
In-reply-to
Content
It wasn't as bad as I thought (hopefully that doesn't mean I've missed something). zipfile-open-w6.patch allows interleaved reads and writes so long as the underlying file object is seekable.

You still can't have multiple write handles open (it wouldn't know where to start the second file), or read & write handles on a non-seekable stream (I don't think a non-seekable read-write file ever makes sense, except perhaps for a pty, which is really two separate streams on one file descriptor).

Tests are passing again.
History
Date User Action Args
2016-04-25 11:20:32takluyversetrecipients: + takluyver, socketpair, python-dev, martin.panter, serhiy.storchaka, mbussonn, Dhiraj_Mishra
2016-04-25 11:20:31takluyversetmessageid: <1461583231.33.0.31785233517.issue26039@psf.upfronthosting.co.za>
2016-04-25 11:20:31takluyverlinkissue26039 messages
2016-04-25 11:20:31takluyvercreate