From 0ce642ebca5f4d0e1b6875b845ad0eb8cb76bbb4 Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Wed, 31 Jul 2013 13:32:40 +0200 Subject: [PATCH] yet another WITH_THREADS typo --- Modules/_sha3/sha3module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_sha3/sha3module.c b/Modules/_sha3/sha3module.c index 0f47fc3429..4e6352b7ba 100644 --- a/Modules/_sha3/sha3module.c +++ b/Modules/_sha3/sha3module.c @@ -464,7 +464,7 @@ SHA3_factory(PyObject *args, PyObject *kwdict, const char *fmt, } if (data_obj) { -#ifdef WITH_THREADS +#ifdef WITH_THREAD if (buf.len >= HASHLIB_GIL_MINSIZE) { /* invariant: New objects can't be accessed by other code yet, * thus it's safe to release the GIL without locking the object. -- 2.50.1