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 8eedbb9 commit a699d7cCopy full SHA for a699d7c
.github/workflows/build.yml
@@ -28,7 +28,7 @@ jobs:
28
- name: Set up Python
29
uses: actions/setup-python@v5
30
with:
31
- python-version: 3.x
+ python-version: 3.11
32
- run: |
33
python -m pip install -q cryptography
34
make test
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() # TODO: Temporary workaround for https://github.com/python/cpython/issues/138720
+ writer.close() # TODO: 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