summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-02-21 16:12:14 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-02-21 16:12:14 (GMT)
commitd9a3591ed154158adeded5d52c25c7bee4dadfbd (patch)
treefdd96c72d76e35ee3fe56f5fc8618145b10aeaa5 /Include
parent8b24506534860b6c1cfa7f53c40113d502f4c78f (diff)
parente249dcab7ad8b1bd3b84a44974cfe2746e4269d1 (diff)
downloadcpython-d9a3591ed154158adeded5d52c25c7bee4dadfbd.zip
cpython-d9a3591ed154158adeded5d52c25c7bee4dadfbd.tar.gz
cpython-d9a3591ed154158adeded5d52c25c7bee4dadfbd.tar.bz2
merge 3.2
Diffstat (limited to 'Include')
-rw-r--r--Include/object.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Include/object.h b/Include/object.h
index c69bece..71d9dc8 100644
--- a/Include/object.h
+++ b/Include/object.h
@@ -560,6 +560,10 @@ typedef struct {
} _Py_HashSecret_t;
PyAPI_DATA(_Py_HashSecret_t) _Py_HashSecret;
+#ifdef Py_DEBUG
+PyAPI_DATA(int) _Py_HashSecret_Initialized;
+#endif
+
/* Helper for passing objects to printf and the like */
#define PyObject_REPR(obj) _PyUnicode_AsString(PyObject_Repr(obj))