kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit 5c18f4ac415b8b95b9bf5c94133a4bc44457ca30
parent be70118bf2fd91b9275d0eee12904015420aa261
Author: Joris Vink <joris@coders.se>
Date:   Fri, 27 Sep 2019 13:49:09 +0200

python acquire method mispelled.

from fcambus@

Diffstat:
include/kore/python_methods.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/kore/python_methods.h b/include/kore/python_methods.h @@ -412,7 +412,7 @@ static PyObject *pylock_release(struct pylock *, PyObject *); static PyObject *pylock_trylock(struct pylock *, PyObject *); static PyMethodDef pylock_methods[] = { - METHOD("aqcuire", pylock_aenter, METH_NOARGS), + METHOD("acquire", pylock_aenter, METH_NOARGS), METHOD("release", pylock_release, METH_NOARGS), METHOD("trylock", pylock_trylock, METH_NOARGS), METHOD("__aexit__", pylock_aexit, METH_VARARGS),