Skip to content

Commit 2d574cd

Browse files
kumaraditya303xuantengh
authored andcommitted
Apply suggestions from code review
1 parent 4d32617 commit 2d574cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Objects/funcobject.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@ PyFunction_SetVectorcall(PyFunctionObject *func, vectorcallfunc vectorcall)
500500
PyObject *
501501
PyFunction_GetKwDefaults(PyObject *op)
502502
{
503-
PyObject * kwdefaults = NULL;
503+
PyObject *kwdefaults = NULL;
504504
if (!PyFunction_Check(op)) {
505505
PyErr_BadInternalCall();
506506
return NULL;
@@ -540,7 +540,7 @@ PyFunction_SetKwDefaults(PyObject *op, PyObject *defaults)
540540
PyObject *
541541
PyFunction_GetClosure(PyObject *op)
542542
{
543-
PyObject* closure = NULL;
543+
PyObject *closure = NULL;
544544
if (!PyFunction_Check(op)) {
545545
PyErr_BadInternalCall();
546546
return NULL;

0 commit comments

Comments
 (0)