mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
12 lines
218 B
Text
12 lines
218 B
Text
|
|
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;
|
|
}
|