Two new methods

This commit is contained in:
Jack Jansen 1995-06-20 12:42:39 +00:00
parent 5214a29774
commit 8d2033f08b
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,9 @@
static PyObject *
$abbrev$_call(self, args)
$abbrev$object *self;
PyObject *args;
{
/* XXXX Return the result of calling self with argument args */
}

View File

@ -0,0 +1,11 @@
static PyObject *
$abbrev$_str(self)
$abbrev$object *self;
{
PyObject *s;
/* XXXX Add code here to put self into s */
return s;
}