mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +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
|
@ -2709,7 +2709,7 @@ static PyMethodDef PyCursesWindow_methods[] = {
|
|||
_CURSES_WINDOW_SETSCRREG_METHODDEF
|
||||
{"standend", PyCursesWindow_wstandend, METH_NOARGS},
|
||||
{"standout", PyCursesWindow_wstandout, METH_NOARGS},
|
||||
{"subpad", (PyCFunction)_curses_window_subwin, METH_VARARGS, _curses_window_subwin__doc__},
|
||||
{"subpad", _curses_window_subwin, METH_VARARGS, _curses_window_subwin__doc__},
|
||||
_CURSES_WINDOW_SUBWIN_METHODDEF
|
||||
{"syncdown", PyCursesWindow_wsyncdown, METH_NOARGS},
|
||||
#ifdef HAVE_CURSES_SYNCOK
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue