Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8d2033f

Browse files
committed
Two new methods
1 parent 5214a29 commit 8d2033f

2 files changed

Lines changed: 20 additions & 0 deletions

File tree

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
2+
static PyObject *
3+
$abbrev$_call(self, args)
4+
$abbrev$object *self;
5+
PyObject *args;
6+
{
7+
/* XXXX Return the result of calling self with argument args */
8+
}
9+
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2+
static PyObject *
3+
$abbrev$_str(self)
4+
$abbrev$object *self;
5+
{
6+
PyObject *s;
7+
8+
/* XXXX Add code here to put self into s */
9+
return s;
10+
}
11+

0 commit comments

Comments
 (0)