Commit a35b42b3 authored by Thomas Wouters's avatar Thomas Wouters

ANSIfy functions that were hiding inside a macro.

parent 8c1a3565
......@@ -1314,7 +1314,7 @@ instance_coerce(PyObject **pv, PyObject **pw)
#define UNARY(funcname, methodname) \
static PyObject *funcname(self) PyInstanceObject *self; { \
static PyObject *funcname(PyInstanceObject *self) { \
static PyObject *o; \
if (o == NULL) o = PyString_InternFromString(methodname); \
return generic_unary_op(self, o); \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment