We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf0b1c6 commit 0896df0Copy full SHA for 0896df0
tests/channel.py
@@ -415,7 +415,7 @@ def write_thread():
415
nonlocal count, write_finished
416
count = writer.write(data.encode("utf-8"))
417
writer.flush()
418
- writer.close()
+ # writer.close() # TODO: Temporary workaround for https://github.com/python/cpython/issues/138720
419
write_finished = True
420
threading.Thread(target=write_thread, name="Write Thread", daemon=True).start()
421
0 commit comments