From: Victor Stinner Date: Sat, 19 Mar 2016 09:33:50 +0000 (+0100) Subject: fix indentation in Py_DECREF() X-Git-Tag: v3.6.0a1~431 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=af4a1f20bafe5bb38215d8b2cb1470bdf8fe4625;p=python fix indentation in Py_DECREF() --- diff --git a/Include/object.h b/Include/object.h index 0e67a4eb6f..a032005bdd 100644 --- a/Include/object.h +++ b/Include/object.h @@ -785,7 +785,7 @@ PyAPI_FUNC(void) _Py_Dealloc(PyObject *); --(_py_decref_tmp)->ob_refcnt != 0) \ _Py_CHECK_REFCNT(_py_decref_tmp) \ else \ - _Py_Dealloc(_py_decref_tmp); \ + _Py_Dealloc(_py_decref_tmp); \ } while (0) /* Safely decref `op` and set `op` to NULL, especially useful in tp_clear