summaryrefslogtreecommitdiff
path: root/Objects/bytesobject.c
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 /Objects/bytesobject.c
parent0e06236a81fcc0a8fc1e612f5ac0a5bf55a2daae (diff)
parent64adc7fe1df0af55c913a6169c87ebb43b7961b2 (diff)
downloadcpython-62aaab18d86502423ed85bbdde188374b54abf7e.tar.gz
merge 3.2
Diffstat (limited to 'Objects/bytesobject.c')
-rw-r--r--Objects/bytesobject.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Objects/bytesobject.c b/Objects/bytesobject.c
index d63fabcc9e..62ddf21532 100644
--- a/Objects/bytesobject.c
+++ b/Objects/bytesobject.c
@@ -875,6 +875,7 @@ bytes_hash(PyBytesObject *a)
register unsigned char *p;
register Py_hash_t x;
+ assert(_Py_HashSecret_Initialized);
if (a->ob_shash != -1)
return a->ob_shash;
len = Py_SIZE(a);