Skip to content

Commit 2df9180

Browse files
committed
Align method definitions in _testcapi
This is how most of the table is formatted. Fix a few lines around the one added.
1 parent b351b2c commit 2df9180

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Modules/_testcapimodule.c

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5683,9 +5683,10 @@ static PyMethodDef TestMethods[] = {
56835683
{"PyBuffer_SizeFromFormat", test_PyBuffer_SizeFromFormat, METH_VARARGS},
56845684
{"test_buildvalue_N", test_buildvalue_N, METH_NOARGS},
56855685
{"test_buildvalue_issue38913", test_buildvalue_issue38913, METH_NOARGS},
5686-
{"get_args", get_args, METH_VARARGS},
5687-
{"test_get_statictype_slots", test_get_statictype_slots, METH_NOARGS},
5688-
{"get_kwargs", (PyCFunction)(void(*)(void))get_kwargs, METH_VARARGS|METH_KEYWORDS},
5686+
{"get_args", get_args, METH_VARARGS},
5687+
{"test_get_statictype_slots", test_get_statictype_slots, METH_NOARGS},
5688+
{"get_kwargs", (PyCFunction)(void(*)(void))get_kwargs,
5689+
METH_VARARGS|METH_KEYWORDS},
56895690
{"getargs_tuple", getargs_tuple, METH_VARARGS},
56905691
{"getargs_keywords", (PyCFunction)(void(*)(void))getargs_keywords,
56915692
METH_VARARGS|METH_KEYWORDS},

0 commit comments

Comments
 (0)