diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1995-10-12 13:45:25 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1995-10-12 13:45:25 (GMT) |
commit | 349a988ba72d24a0dacfe5e9ba082b86e997d119 (patch) | |
tree | df68245d144fcece76a053ff54e905f8bcb5925f /Tools/modulator/Templates/object_tp_call | |
parent | 99bbd18067083380b13a153c52fe342dbff21bc5 (diff) | |
download | cpython-349a988ba72d24a0dacfe5e9ba082b86e997d119.zip cpython-349a988ba72d24a0dacfe5e9ba082b86e997d119.tar.gz cpython-349a988ba72d24a0dacfe5e9ba082b86e997d119.tar.bz2 |
Added third argument to call()
Diffstat (limited to 'Tools/modulator/Templates/object_tp_call')
-rw-r--r-- | Tools/modulator/Templates/object_tp_call | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Tools/modulator/Templates/object_tp_call b/Tools/modulator/Templates/object_tp_call index 32a3615..be4cc4b 100644 --- a/Tools/modulator/Templates/object_tp_call +++ b/Tools/modulator/Templates/object_tp_call @@ -1,8 +1,9 @@ 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 */ } |