shithub: riscv

ref: a7c01127f9749fe471367c6461cde357403cc3b3
dir: /sys/src/cmd/python/Tools/modulator/Templates/object_new/

View raw version

static $abbrev$object *
new$abbrev$object()
{
	$abbrev$object *self;
	
	self = PyObject_NEW($abbrev$object, &$Abbrev$type);
	if (self == NULL)
		return NULL;
	/* XXXX Add your own initializers here */
	return self;
}