Numworks Epsilon
1.4.1
Graphing Calculator Operating System
|
#include <stdlib.h>
#include <assert.h>
#include "py/objmodule.h"
#include "py/runtime.h"
#include "py/builtin.h"
Go to the source code of this file.
Functions | |
STATIC void | module_print (const mp_print_t *print, mp_obj_t self_in, mp_print_kind_t kind) |
STATIC void | module_attr (mp_obj_t self_in, qstr attr, mp_obj_t *dest) |
mp_obj_t | mp_obj_new_module (qstr module_name) |
mp_obj_dict_t * | mp_obj_module_get_globals (mp_obj_t self_in) |
MP_DEFINE_CONST_MAP (mp_builtin_module_map, mp_builtin_module_table) | |
mp_obj_t | mp_module_get (qstr module_name) |
void | mp_module_register (qstr qst, mp_obj_t module) |
Variables | |
const mp_obj_type_t | mp_type_module |
STATIC const mp_rom_map_elem_t | mp_builtin_module_table [] |
Definition at line 57 of file objmodule.c.
STATIC void module_print | ( | const mp_print_t * | print, |
mp_obj_t | self_in, | ||
mp_print_kind_t | kind | ||
) |
Definition at line 34 of file objmodule.c.
MP_DEFINE_CONST_MAP | ( | mp_builtin_module_map | , |
mp_builtin_module_table | |||
) |
Definition at line 239 of file objmodule.c.
Definition at line 267 of file objmodule.c.
mp_obj_dict_t* mp_obj_module_get_globals | ( | mp_obj_t | self_in | ) |
Definition at line 125 of file objmodule.c.
Definition at line 101 of file objmodule.c.
STATIC const mp_rom_map_elem_t mp_builtin_module_table[] |
Definition at line 134 of file objmodule.c.
const mp_obj_type_t mp_type_module |
Definition at line 94 of file objmodule.c.