[Python-checkins] cpython: fix indentation in Py_DECREF()

victor.stinner python-checkins at python.org
Sat Mar 19 05:33:58 EDT 2016


https://hg.python.org/cpython/rev/71c55c89d4f1
changeset:   100606:71c55c89d4f1
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Sat Mar 19 10:33:50 2016 +0100
summary:
  fix indentation in Py_DECREF()

files:
  Include/object.h |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Include/object.h b/Include/object.h
--- a/Include/object.h
+++ b/Include/object.h
@@ -785,7 +785,7 @@
         --(_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

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list