summaryrefslogtreecommitdiffstats
path: root/Tools/modulator/Templates/object_tp_setattr
blob: 15701b622670ed72b8ed124fbda9fd55cdb38449 (plain)
1
2
3
4
5
6
7
8
9
10
11
12

static int
$abbrev$_setattr(self, name, v)
	$abbrev$object *self;
	char *name;
	PyObject *v;
{
	/* Set attribute 'name' to value 'v'. v==NULL means delete */
	
	/* XXXX Add your own setattr code here */
	return -1;
}