python-c

A small Python module in C
git clone https://git.tronto.net/python-c
Download | Log | Files | Refs | README

commit d85d1ab7ab6f2133efc039bf150d7ae0fb5202a1
parent 204c4f505a85435dac8b02f4166faf305888f771
Author: Sebastiano Tronto <sebastiano@tronto.net>
Date:   Tue,  8 Oct 2024 15:01:48 +0200

small change

Diffstat:
Msum_module.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sum_module.c b/sum_module.c @@ -1,8 +1,8 @@ -#include "sum.h" - #define PY_SSIZE_T_CLEAN #include <Python.h> +#include "sum.h" + static PyObject *csum(PyObject *self, PyObject *args) { int a, b, result;