Skip to content

Commit eb9d185

Browse files
committed
format
1 parent e3ae10e commit eb9d185

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
@@ -1761,7 +1761,7 @@ sm_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
17611761
if (sm == NULL) {
17621762
return NULL;
17631763
}
1764-
_PyObject_SetDeferredRefcount((PyObject*)sm);
1764+
_PyObject_SetDeferredRefcount((PyObject *)sm);
17651765
if (sm_set_callable(sm, callable) < 0) {
17661766
Py_DECREF(sm);
17671767
return NULL;
@@ -1928,7 +1928,7 @@ PyStaticMethod_New(PyObject *callable)
19281928
if (sm == NULL) {
19291929
return NULL;
19301930
}
1931-
_PyObject_SetDeferredRefcount((PyObject*)sm);
1931+
_PyObject_SetDeferredRefcount((PyObject *)sm);
19321932
if (sm_set_callable(sm, callable) < 0) {
19331933
Py_DECREF(sm);
19341934
return NULL;

0 commit comments

Comments
 (0)