Skip to content

Commit ec0a0b2

Browse files
encukoupganssle
authored andcommitted
Fix a refleak
1 parent c2a7454 commit ec0a0b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_testcapimodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5203,7 +5203,7 @@ meth_varargs(PyObject* self, PyObject* args)
52035203
static PyObject*
52045204
meth_varargs_keywords(PyObject* self, PyObject* args, PyObject* kwargs)
52055205
{
5206-
return Py_BuildValue("NOO", _null_to_none(self), args, _null_to_none(kwargs));
5206+
return Py_BuildValue("NON", _null_to_none(self), args, _null_to_none(kwargs));
52075207
}
52085208

52095209
static PyObject*

0 commit comments

Comments
 (0)