]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
comment fix
authorJack Jansen <jack.jansen@cwi.nl>
Mon, 23 Oct 1995 13:52:52 +0000 (13:52 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Mon, 23 Oct 1995 13:52:52 +0000 (13:52 +0000)
Tools/modulator/Templates/object_tp_setattr

index 2e47f5f8b7c7ad445d2f5fb50f45805723492711..15701b622670ed72b8ed124fbda9fd55cdb38449 100644 (file)
@@ -5,6 +5,8 @@ $abbrev$_setattr(self, name, v)
        char *name;
        PyObject *v;
 {
+       /* Set attribute 'name' to value 'v'. v==NULL means delete */
+       
        /* XXXX Add your own setattr code here */
        return -1;
 }