summaryrefslogtreecommitdiffstats
path: root/Objects/unicodeobject.c
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 /Objects/unicodeobject.c
parentdbe0329d4c7f31618d913a1e8c233239e05a54eb (diff)
parent876e789f650a68b1fe05be7060794357cf13e3d3 (diff)
downloadcpython-9d7601fcea7c9cee6132c4a4dffb482cfa351785.zip
cpython-9d7601fcea7c9cee6132c4a4dffb482cfa351785.tar.gz
cpython-9d7601fcea7c9cee6132c4a4dffb482cfa351785.tar.bz2
merge 2.6
Diffstat (limited to 'Objects/unicodeobject.c')
-rw-r--r--Objects/unicodeobject.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index a65deff..4fb1aed 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -6538,6 +6538,7 @@ unicode_hash(PyUnicodeObject *self)
register Py_UNICODE *p;
register long x;
+ assert(_Py_HashSecret_Initialized);
if (self->hash != -1)
return self->hash;
len = PyUnicode_GET_SIZE(self);