summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-04-04 16:05:51 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-04-04 16:05:51 (GMT)
commitea0d7444c8be91202a5b563d865aa479f90e10df (patch)
treea631a110772c6597d07f4c2366b3a7769ae99549 /Include
parent8212a823712061550c1757ef688cde0f4faec953 (diff)
downloadcpython-ea0d7444c8be91202a5b563d865aa479f90e10df.zip
cpython-ea0d7444c8be91202a5b563d865aa479f90e10df.tar.gz
cpython-ea0d7444c8be91202a5b563d865aa479f90e10df.tar.bz2
revert r71159 since it broke the build
Diffstat (limited to 'Include')
-rw-r--r--Include/object.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/Include/object.h b/Include/object.h
index fb5376a..cfca64f 100644
--- a/Include/object.h
+++ b/Include/object.h
@@ -749,13 +749,11 @@ PyAPI_FUNC(void) _Py_AddToAllObjects(PyObject *, int force);
((PyObject*)(op))->ob_refcnt++)
#define Py_DECREF(op) \
- do { \
- if (_Py_DEC_REFTOTAL _Py_REF_DEBUG_COMMA \
- --((PyObject*)(op))->ob_refcnt != 0) \
- _Py_CHECK_REFCNT(op) \
- else \
- _Py_Dealloc((PyObject *)(op)) \
- } while (0)
+ if (_Py_DEC_REFTOTAL _Py_REF_DEBUG_COMMA \
+ --((PyObject*)(op))->ob_refcnt != 0) \
+ _Py_CHECK_REFCNT(op) \
+ else \
+ _Py_Dealloc((PyObject *)(op))
/* Safely decref `op` and set `op` to NULL, especially useful in tp_clear
* and tp_dealloc implementatons.