@@ -471,13 +471,13 @@ static struct PyMethodDef pg_rect_methods[] = {
471471 {"fit" , (PyCFunction )pg_rect_fit , METH_FASTCALL , DOC_RECT_FIT },
472472 {"move" , (PyCFunction )pg_rect_move , METH_FASTCALL , DOC_RECT_MOVE },
473473 {"update" , (PyCFunction )pg_rect_update , METH_FASTCALL , DOC_RECT_UPDATE },
474- {"inflate" , (PyCFunction )pg_rect_inflate , METH_VARARGS , DOC_RECT_INFLATE },
474+ {"inflate" , (PyCFunction )pg_rect_inflate , METH_FASTCALL , DOC_RECT_INFLATE },
475475 {"union" , (PyCFunction )pg_rect_union , METH_FASTCALL , DOC_RECT_UNION },
476476 {"unionall" , (PyCFunction )pg_rect_unionall , METH_O , DOC_RECT_UNIONALL },
477477 {"move_ip" , (PyCFunction )pg_rect_move_ip , METH_FASTCALL , DOC_RECT_MOVEIP },
478478 {"move_to" , (PyCFunction )pg_rect_move_to , METH_FASTCALL | METH_KEYWORDS ,
479479 DOC_RECT_MOVETO },
480- {"inflate_ip" , (PyCFunction )pg_rect_inflate_ip , METH_VARARGS ,
480+ {"inflate_ip" , (PyCFunction )pg_rect_inflate_ip , METH_FASTCALL ,
481481 DOC_RECT_INFLATEIP },
482482 {"scale_by" , (PyCFunction )pg_rect_scale_by , METH_VARARGS | METH_KEYWORDS ,
483483 DOC_RECT_SCALEBY },
@@ -522,13 +522,14 @@ static struct PyMethodDef pg_frect_methods[] = {
522522 {"fit" , (PyCFunction )pg_frect_fit , METH_FASTCALL , DOC_RECT_FIT },
523523 {"move" , (PyCFunction )pg_frect_move , METH_FASTCALL , DOC_RECT_MOVE },
524524 {"update" , (PyCFunction )pg_frect_update , METH_FASTCALL , DOC_RECT_UPDATE },
525- {"inflate" , (PyCFunction )pg_frect_inflate , METH_VARARGS , DOC_RECT_INFLATE },
525+ {"inflate" , (PyCFunction )pg_frect_inflate , METH_FASTCALL ,
526+ DOC_RECT_INFLATE },
526527 {"union" , (PyCFunction )pg_frect_union , METH_FASTCALL , DOC_RECT_UNION },
527528 {"unionall" , (PyCFunction )pg_frect_unionall , METH_O , DOC_RECT_UNIONALL },
528529 {"move_ip" , (PyCFunction )pg_frect_move_ip , METH_FASTCALL , DOC_RECT_MOVEIP },
529530 {"move_to" , (PyCFunction )pg_frect_move_to , METH_FASTCALL | METH_KEYWORDS ,
530531 DOC_RECT_MOVETO },
531- {"inflate_ip" , (PyCFunction )pg_frect_inflate_ip , METH_VARARGS ,
532+ {"inflate_ip" , (PyCFunction )pg_frect_inflate_ip , METH_FASTCALL ,
532533 DOC_RECT_INFLATEIP },
533534 {"scale_by" , (PyCFunction )pg_frect_scale_by , METH_VARARGS | METH_KEYWORDS ,
534535 DOC_RECT_SCALEBY },
0 commit comments