
static $abbrev$Object *
$abbrev$_New()
{
	$abbrev$Object *self;
	
	self = PyObject_NEW($abbrev$Object, &$Abbrev$Type);
	if (self == NULL)
		return NULL;
	/* Initialition macro */
#ifdef $abbrev$_New_impl
	$abbrev$_New_impl(self)
#else
	$abbrev$_New_(self)
#endif
	return self;
}
