I\'m trying to build a Python Module/extension write using C API, but it fails:
% python2 cmath.py build running build running build_ext building \'c_math\' exte
static PyMethodDef c_mathMethods[] = { {"more", c_math_more, METH_VARARGS, "n + nn Using C API"}, {NULL, NULL, 0, NULL} - } + };
You are missing a semicolon at the end...