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 3eff4b9790a96f5ce56c4799562f123e6b82c790
parent 355cf87b93207feb7a09c36c27f389531eeeecd3
Author: Joris Vink <joris@coders.se>
Date:   Fri, 27 Aug 2021 10:12:11 +0200

whitespace fixes

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

diff --git a/src/python.c b/src/python.c @@ -6200,7 +6200,7 @@ pyhttp_client_request(struct pyhttp_client *client, int m, PyObject *kwargs) default: fatal("%s: unknown method %d", __func__, m); } - + op = PyObject_New(struct pyhttp_client_op, &pyhttp_client_op_type); if (op == NULL) return (NULL);