Skip to content

Commit ceb3dae

Browse files
Fix a typo.
1 parent 272488a commit ceb3dae

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Modules/_xxinterpchannelsmodule.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2480,7 +2480,8 @@ channel_send_buffer(PyObject *self, PyObject *args, PyObject *kwds)
24802480
.module = self,
24812481
};
24822482
PyObject *obj;
2483-
if (!PyArg_ParseTupleAndKeywords(args, kwds, "O&O:channel_send", kwlist,
2483+
if (!PyArg_ParseTupleAndKeywords(args, kwds,
2484+
"O&O:channel_send_buffer", kwlist,
24842485
channel_id_converter, &cid_data, &obj)) {
24852486
return NULL;
24862487
}

0 commit comments

Comments
 (0)