Added divmod and abs methods for numbers
diff --git a/Include/object.h b/Include/object.h
index 9ea5260..ac72529 100644
--- a/Include/object.h
+++ b/Include/object.h
@@ -130,9 +130,11 @@
 	object *(*nb_multiply) FPROTO((object *, object *));
 	object *(*nb_divide) FPROTO((object *, object *));
 	object *(*nb_remainder) FPROTO((object *, object *));
+	object *(*nb_divmod) FPROTO((object *, object *));
 	object *(*nb_power) FPROTO((object *, object *));
 	object *(*nb_negative) FPROTO((object *));
 	object *(*nb_positive) FPROTO((object *));
+	object *(*nb_absolute) FPROTO((object *));
 } number_methods;
 
 typedef struct {