
static PyObject *
$abbrev$_$method$(PyObject *self, PyObject *args)
{
	/* Either use macro or separate function */
#ifdef $abbrev$_$method$_impl
	$abbrev$_$method$_impl(args);
#else
	return $abbrev$_$method$_(self,args);
#endif
}
