Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit af4a1f2

Browse files
committed
fix indentation in Py_DECREF()
1 parent ee803a8 commit af4a1f2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Include/object.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -785,7 +785,7 @@ PyAPI_FUNC(void) _Py_Dealloc(PyObject *);
785785
--(_py_decref_tmp)->ob_refcnt != 0) \
786786
_Py_CHECK_REFCNT(_py_decref_tmp) \
787787
else \
788-
_Py_Dealloc(_py_decref_tmp); \
788+
_Py_Dealloc(_py_decref_tmp); \
789789
} while (0)
790790

791791
/* Safely decref `op` and set `op` to NULL, especially useful in tp_clear

0 commit comments

Comments
 (0)