diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-02-21 16:24:21 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-02-21 16:24:21 (GMT) |
commit | 9d7601fcea7c9cee6132c4a4dffb482cfa351785 (patch) | |
tree | bbcac236f3ba1983cf2c8f0f95ef38fea2cb8471 /Include/object.h | |
parent | dbe0329d4c7f31618d913a1e8c233239e05a54eb (diff) | |
parent | 876e789f650a68b1fe05be7060794357cf13e3d3 (diff) | |
download | cpython-9d7601fcea7c9cee6132c4a4dffb482cfa351785.zip cpython-9d7601fcea7c9cee6132c4a4dffb482cfa351785.tar.gz cpython-9d7601fcea7c9cee6132c4a4dffb482cfa351785.tar.bz2 |
merge 2.6
Diffstat (limited to 'Include/object.h')
-rw-r--r-- | Include/object.h | 4 |
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)) |