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 05ab111 commit 97ad2d8Copy full SHA for 97ad2d8
1 file changed
Include/object.h
@@ -130,9 +130,11 @@ typedef struct {
130
object *(*nb_multiply) FPROTO((object *, object *));
131
object *(*nb_divide) FPROTO((object *, object *));
132
object *(*nb_remainder) FPROTO((object *, object *));
133
+ object *(*nb_divmod) FPROTO((object *, object *));
134
object *(*nb_power) FPROTO((object *, object *));
135
object *(*nb_negative) FPROTO((object *));
136
object *(*nb_positive) FPROTO((object *));
137
+ object *(*nb_absolute) FPROTO((object *));
138
} number_methods;
139
140
typedef struct {
0 commit comments