Staging
v0.8.1
Revision ae7bc1348237a9120bc896e17c2e3461728ecb9c authored by Barry Warsaw on 22 May 2003, 19:13:35 UTC, committed by Barry Warsaw on 22 May 2003, 19:13:35 UTC
1 parent f828b41
Raw File
object_tp_setattr

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;
}
back to top