diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-03-19 09:33:50 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-03-19 09:33:50 (GMT) |
commit | af4a1f20bafe5bb38215d8b2cb1470bdf8fe4625 (patch) | |
tree | 3cbdad8821ef8489362222a40a41e484fe051036 | |
parent | ee803a8d2ccf50e60d18ca1bb46f7a1cf3db66f5 (diff) | |
download | cpython-af4a1f20bafe5bb38215d8b2cb1470bdf8fe4625.zip cpython-af4a1f20bafe5bb38215d8b2cb1470bdf8fe4625.tar.gz cpython-af4a1f20bafe5bb38215d8b2cb1470bdf8fe4625.tar.bz2 |
fix indentation in Py_DECREF()
-rw-r--r-- | Include/object.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/object.h b/Include/object.h index 0e67a4e..a032005 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 |