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 socketpair
Recipients eph ​, socketpair
Date 2016-01-08.11:49:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1452253763.24.0.197054863847.issue26037@psf.upfronthosting.co.za>
In-reply-to
Content
16.2.4.3. Multi-threading
FileIO objects are thread-safe to the extent that the operating system calls (such as read(2) under Unix) they wrap are thread-safe too.

Binary buffered objects (instances of BufferedReader, BufferedWriter, BufferedRandom and BufferedRWPair) protect their internal structures using a lock; it is therefore safe to call them from multiple threads at once.

>>>> TextIOWrapper objects are not thread-safe. <<<<


Maybe problem here?
History
Date User Action Args
2016-01-08 11:49:23socketpairsetrecipients: + socketpair, eph ​
2016-01-08 11:49:23socketpairsetmessageid: <1452253763.24.0.197054863847.issue26037@psf.upfronthosting.co.za>
2016-01-08 11:49:23socketpairlinkissue26037 messages
2016-01-08 11:49:22socketpaircreate