Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix the tests.
  • Loading branch information
ericsnowcurrently committed Oct 10, 2023
commit b85a681aef97b88fb1fc73ee8180b96be667d5c7
3 changes: 1 addition & 2 deletions Lib/test/test__xxinterpchannels.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@
def recv_wait(cid):
while True:
try:
return channels.recv({cid})
break
return channels.recv(cid)
except channels.ChannelEmptyError:
time.sleep(0.1)

Expand Down