summaryrefslogtreecommitdiffstats
path: root/Include/object.h
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-02-21 16:24:21 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-02-21 16:24:21 (GMT)
commit9d7601fcea7c9cee6132c4a4dffb482cfa351785 (patch)
treebbcac236f3ba1983cf2c8f0f95ef38fea2cb8471 /Include/object.h
parentdbe0329d4c7f31618d913a1e8c233239e05a54eb (diff)
parent876e789f650a68b1fe05be7060794357cf13e3d3 (diff)
downloadcpython-9d7601fcea7c9cee6132c4a4dffb482cfa351785.zip
cpython-9d7601fcea7c9cee6132c4a4dffb482cfa351785.tar.gz
cpython-9d7601fcea7c9cee6132c4a4dffb482cfa351785.tar.bz2
merge 2.6
Diffstat (limited to 'Include/object.h')
-rw-r--r--Include/object.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Include/object.h b/Include/object.h
index c24ea7f..edcd3fc 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) PyString_AS_STRING(PyObject_Repr(obj))