mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
gh-111178: remove redundant casts for functions with correct signatures (#131673)
This commit is contained in:
parent
8cd29c2b53
commit
edbf7fb129
30 changed files with 96 additions and 101 deletions
|
@ -2516,7 +2516,7 @@ hamt_baseiter_new(PyTypeObject *type, binaryfunc yield, PyHamtObject *o)
|
|||
.tp_traverse = hamt_baseiter_tp_traverse, \
|
||||
.tp_clear = hamt_baseiter_tp_clear, \
|
||||
.tp_iter = PyObject_SelfIter, \
|
||||
.tp_iternext = (iternextfunc)hamt_baseiter_tp_iternext,
|
||||
.tp_iternext = hamt_baseiter_tp_iternext,
|
||||
|
||||
|
||||
/////////////////////////////////// _PyHamtItems_Type
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue