Slide 13
Slide 13 text
Add Python Support
C/CExtExample.c
static PyMethodDef Methods[] = {
{“sieve_of_eratosphenes",
CExtExample_SieveOfEratosphenes,
METH_VARARGS,
"Return list of prime numbers until given number."},
{NULL, NULL, 0, NULL} "/* Sentinel "*/
};
13