Kaydet (Commit) 349a988b authored tarafından Jack Jansen's avatar Jack Jansen

Added third argument to call()

üst 99bbd180
......@@ -20,7 +20,7 @@ static PyTypeObject $Abbrev$type = {
$tp_as_sequence$, /*tp_as_sequence*/
$tp_as_mapping$, /*tp_as_mapping*/
(hashfunc)$tp_hash$, /*tp_hash*/
(binaryfunc)$tp_call$, /*tp_call*/
(ternaryfunc)$tp_call$, /*tp_call*/
(reprfunc)$tp_str$, /*tp_str*/
/* Space for future expansion */
......
static PyObject *
$abbrev$_call(self, args)
$abbrev$_call(self, args, kwargs)
$abbrev$object *self;
PyObject *args;
PyObject *kwargs;
{
/* XXXX Return the result of calling self with argument args */
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment