Skip to content
Prev Previous commit
Next Next commit
formatting tweaks
  • Loading branch information
wjakob committed Oct 27, 2022
commit 7968a83b6fa6b18ca63d701dbcdf56f1416e7fa1
8 changes: 6 additions & 2 deletions Modules/_testcapi/vectorcall_limited.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ LimitedVectorCallClass_new(PyTypeObject *tp, PyTypeObject *a, PyTypeObject *kw)
return self;
}

static PyObject *call_vectorcall(PyObject* self, PyObject *callable) {
static PyObject *
call_vectorcall(PyObject* self, PyObject *callable)
{
PyObject *args[3] = { NULL, NULL, NULL };
PyObject *kwname = NULL, *kwnames = NULL, *result = NULL;

Expand Down Expand Up @@ -75,7 +77,9 @@ static PyObject *call_vectorcall(PyObject* self, PyObject *callable) {
return result;
}

static PyObject *call_vectorcall_method(PyObject* self, PyObject *callable) {
static PyObject *
call_vectorcall_method(PyObject* self, PyObject *callable)
{
PyObject *args[3] = { NULL, NULL, NULL };
PyObject *name = NULL, *kwname = NULL,
*kwnames = NULL, *result = NULL;
Expand Down