mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
13 lines
218 B
Plaintext
13 lines
218 B
Plaintext
|
|
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;
|
|
}
|