summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-02-21 16:09:13 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-02-21 16:09:13 (GMT)
commite249dcab7ad8b1bd3b84a44974cfe2746e4269d1 (patch)
treeeaf152bad01062780b3901e1c27ab6e2719b6eaf /Include
parent4fe85abab9f0188733e654a72353217b43f95920 (diff)
parent69e9727657dad167215b656de910d95cefe1ee45 (diff)
downloadcpython-e249dcab7ad8b1bd3b84a44974cfe2746e4269d1.zip
cpython-e249dcab7ad8b1bd3b84a44974cfe2746e4269d1.tar.gz
cpython-e249dcab7ad8b1bd3b84a44974cfe2746e4269d1.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 a54c400..315766c 100644
--- a/Include/object.h
+++ b/Include/object.h
@@ -523,6 +523,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))