commit | 8d412f36b5808892d6c7aa0706f2fa6f1505f8f6 | [log] [tgz] |
---|---|---|
author | Alexandre Vassalotti <alexandre@peadrop.com> | Sun Jul 13 20:42:44 2008 +0000 |
committer | Alexandre Vassalotti <alexandre@peadrop.com> | Sun Jul 13 20:42:44 2008 +0000 |
tree | 59ef784c7de644586d1a4c9882ce40ee31e10902 | |
parent | 060cd1e1eab13add457d7bc40459d630e894ee6a [diff] [blame] |
Issue #3274: Use a less common identifier for the temporary variable in Py_CLEAR().
diff --git a/Include/object.h b/Include/object.h index 59f3b9e..e447769 100644 --- a/Include/object.h +++ b/Include/object.h
@@ -773,9 +773,9 @@ #define Py_CLEAR(op) \ do { \ if (op) { \ - PyObject *tmp = (PyObject *)(op); \ + PyObject *_py_tmp = (PyObject *)(op); \ (op) = NULL; \ - Py_DECREF(tmp); \ + Py_DECREF(_py_tmp); \ } \ } while (0)