Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
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
Next Next commit
Fix SendChannel.send_buffer_nowait().
  • Loading branch information
ericsnowcurrently committed Oct 2, 2023
commit 272488a8683b3639c3704f76671e03e708d4e7ad
3 changes: 2 additions & 1 deletion Lib/test/support/interpreters.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,8 @@ def send_buffer_nowait(self, obj):
If the object is immediately received then return True
(else False). Otherwise this is the same as send().
"""
return _channels.send_buffer(self._id, obj, blocking=False)
return _channels.send_buffer(self._id, obj)
#return _channels.send_buffer(self._id, obj, blocking=False)

def close(self):
_channels.close(self._id, send=True)
Expand Down