Skip to content

Commit 5c53046

Browse files
committed
Fix incorrect desc for recv-side fields in channel_info
1 parent eb6d0e0 commit 5c53046

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Modules/_interpchannelsmodule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2212,9 +2212,9 @@ static PyStructSequence_Field channel_info_fields[] = {
22122212
{"num_interp_send_released",
22132213
"interpreters bound to the send end and released"},
22142214

2215-
{"num_interp_recv", "interpreters bound to the send end"},
2215+
{"num_interp_recv", "interpreters bound to the recv end"},
22162216
{"num_interp_recv_released",
2217-
"interpreters bound to the send end and released"},
2217+
"interpreters bound to the recv end and released"},
22182218

22192219
{"num_interp_both", "interpreters bound to both ends"},
22202220
{"num_interp_both_released",

0 commit comments

Comments
 (0)