You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def _send_bytes(self, buf):
if self._send_ov is not None:
# A connection should only be used by a single thread
raise ValueError("concurrent send_bytes() calls "
"are not supported")
I had to surround windows pipe sends in a lock context because of this change
https://github.com/python/cpython/blob/3.12/Lib/multiprocessing/connection.py
This is the commit it is referenced
python/cpython#107219
The text was updated successfully, but these errors were encountered: