Skip to content

Commit 8327ef1

Browse files
committed
redundant casts
1 parent d2b5178 commit 8327ef1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_functoolsmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -752,7 +752,7 @@ static PyType_Slot partial_type_slots[] = {
752752
{Py_tp_methods, partial_methods},
753753
{Py_tp_members, partial_memberlist},
754754
{Py_tp_getset, partial_getsetlist},
755-
{Py_tp_descr_get, (descrgetfunc)partial_descr_get},
755+
{Py_tp_descr_get, partial_descr_get},
756756
{Py_tp_new, partial_new},
757757
{Py_tp_free, PyObject_GC_Del},
758758
{0, 0}

0 commit comments

Comments
 (0)