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 6ed3ac4658ff38f93d2431f7e366de72139dc389
parent 3cc7d6e2380fe9b83a7212e58d1f31750ad5891e
Author: Joris Vink <joris@coders.se>
Date:   Fri,  7 Jun 2019 21:25:18 +0200

kill debug

Diffstat:
src/python.c | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/src/python.c b/src/python.c @@ -631,7 +631,6 @@ pyconnection_dealloc(struct pyconnection *pyc) static void pyhttp_dealloc(struct pyhttp_request *pyreq) { - printf("http request deallocated\n"); Py_XDECREF(pyreq->dict); Py_XDECREF(pyreq->data); PyObject_Del((PyObject *)pyreq);