8000 fix indentation in Py_DECREF() · python/cpython@c2a2911 · GitHub
[go: up one dir, main page]

Skip to content

Commit c2a2911

Browse files
committed
fix indentation in Py_DECREF()
1 parent fcf4897 commit c2a2911

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)
0