@@ -947,7 +947,7 @@ test_buildvalue_N_error(const char *fmt)
947947}
948948
949949static PyObject *
950- test_buildvalue_N (PyObject * self , PyObject * noargs )
950+ test_buildvalue_N (PyObject * self , PyObject * Py_UNUSED ( ignored ) )
951951{
952952 PyObject * arg , * res ;
953953
@@ -2457,7 +2457,7 @@ pending_threadfunc(PyObject *self, PyObject *arg)
24572457
24582458/* Some tests of PyUnicode_FromFormat(). This needs more tests. */
24592459static PyObject *
2460- test_string_from_format (PyObject * self , PyObject * args )
2460+ test_string_from_format (PyObject * self , PyObject * Py_UNUSED ( ignored ) )
24612461{
24622462 PyObject * result ;
24632463 char * msg ;
@@ -2597,7 +2597,7 @@ typedef struct {
25972597} known_capsule ;
25982598
25992599static PyObject *
2600- test_capsule (PyObject * self , PyObject * args )
2600+ test_capsule (PyObject * self , PyObject * Py_UNUSED ( ignored ) )
26012601{
26022602 PyObject * object ;
26032603 const char * error = NULL ;
@@ -2968,7 +2968,7 @@ make_memoryview_from_NULL_pointer(PyObject *self, PyObject *Py_UNUSED(ignored))
29682968}
29692969
29702970static PyObject *
2971- test_from_contiguous (PyObject * self , PyObject * noargs )
2971+ test_from_contiguous (PyObject * self , PyObject * Py_UNUSED ( ignored ) )
29722972{
29732973 int data [9 ] = {-1 ,-1 ,-1 ,-1 ,-1 ,-1 ,-1 ,-1 ,-1 };
29742974 int init [5 ] = {0 , 1 , 2 , 3 , 4 };
@@ -3021,7 +3021,7 @@ test_from_contiguous(PyObject* self, PyObject *noargs)
30213021extern PyTypeObject _PyBytesIOBuffer_Type ;
30223022
30233023static PyObject *
3024- test_pep3118_obsolete_write_locks (PyObject * self , PyObject * noargs )
3024+ test_pep3118_obsolete_write_locks (PyObject * self , PyObject * Py_UNUSED ( ignored ) )
30253025{
30263026 PyTypeObject * type = & _PyBytesIOBuffer_Type ;
30273027 PyObject * b ;
0 commit comments