mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +00:00
Fix a compile warning in selectmodule.c. (GH-16617)
This commit is contained in:
parent
038503e08a
commit
303475e873
1 changed files with 1 additions and 1 deletions
|
|
@ -2362,7 +2362,7 @@ static PyMethodDef kqueue_queue_methods[] = {
|
|||
|
||||
static PyType_Slot kqueue_queue_Type_slots[] = {
|
||||
{Py_tp_dealloc, kqueue_queue_dealloc},
|
||||
{Py_tp_doc, select_kqueue__doc__},
|
||||
{Py_tp_doc, (void*)select_kqueue__doc__},
|
||||
{Py_tp_getset, kqueue_queue_getsetlist},
|
||||
{Py_tp_methods, kqueue_queue_methods},
|
||||
{Py_tp_new, select_kqueue},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue