Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99bbd18 commit 349a988Copy full SHA for 349a988
2 files changed
Tools/modulator/Templates/object_tail
@@ -20,7 +20,7 @@ static PyTypeObject $Abbrev$type = {
20
$tp_as_sequence$, /*tp_as_sequence*/
21
$tp_as_mapping$, /*tp_as_mapping*/
22
(hashfunc)$tp_hash$, /*tp_hash*/
23
- (binaryfunc)$tp_call$, /*tp_call*/
+ (ternaryfunc)$tp_call$, /*tp_call*/
24
(reprfunc)$tp_str$, /*tp_str*/
25
26
/* Space for future expansion */
Tools/modulator/Templates/object_tp_call
@@ -1,8 +1,9 @@
1
2
static PyObject *
3
-$abbrev$_call(self, args)
+$abbrev$_call(self, args, kwargs)
4
$abbrev$object *self;
5
PyObject *args;
6
+ PyObject *kwargs;
7
{
8
/* XXXX Return the result of calling self with argument args */
9
}
0 commit comments