Merge branch 'cplusplus' of https://github.com/ian-v/micropython into ian-v-cplusplus

Conflicts:
	py/objcomplex.c
diff --git a/py/objmodule.c b/py/objmodule.c
index 2d6f955..3e7a0f7 100644
--- a/py/objmodule.c
+++ b/py/objmodule.c
@@ -24,14 +24,7 @@
 const mp_obj_type_t module_type = {
     { &mp_const_type },
     "module",
-    module_print, // print
-    NULL, // make_new
-    NULL, // call_n
-    NULL, // unary_op
-    NULL, // binary_op
-    NULL, // getiter
-    NULL, // iternext
-    .methods = {{NULL, NULL},},
+    .print = module_print,
 };
 
 mp_obj_t mp_obj_new_module(qstr module_name) {