ANSIfy functions that were hiding inside a macro.

This commit is contained in:
Thomas Wouters 2000-07-23 22:09:59 +00:00
parent 8a3ebf8ca8
commit c307352027
1 changed files with 1 additions and 1 deletions

View File

@ -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); \