summaryrefslogtreecommitdiff
path: root/Include
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-02-21 11:09:13 -0500
committerBenjamin Peterson <benjamin@python.org>2012-02-21 11:09:13 -0500
commit62aaab18d86502423ed85bbdde188374b54abf7e (patch)
tree08506ded956cb3cca9bb8f6fd33ef18129c45752 /Include
parent0e06236a81fcc0a8fc1e612f5ac0a5bf55a2daae (diff)
parent64adc7fe1df0af55c913a6169c87ebb43b7961b2 (diff)
downloadcpython-62aaab18d86502423ed85bbdde188374b54abf7e.tar.gz
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 a54c400774..315766c421 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))