Numworks Epsilon  1.4.1
Graphing Calculator Operating System
builtin.h
Go to the documentation of this file.
1 /*
2  * This file is part of the MicroPython project, http://micropython.org/
3  *
4  * The MIT License (MIT)
5  *
6  * Copyright (c) 2013, 2014 Damien P. George
7  *
8  * Permission is hereby granted, free of charge, to any person obtaining a copy
9  * of this software and associated documentation files (the "Software"), to deal
10  * in the Software without restriction, including without limitation the rights
11  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12  * copies of the Software, and to permit persons to whom the Software is
13  * furnished to do so, subject to the following conditions:
14  *
15  * The above copyright notice and this permission notice shall be included in
16  * all copies or substantial portions of the Software.
17  *
18  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24  * THE SOFTWARE.
25  */
26 #ifndef MICROPY_INCLUDED_PY_BUILTIN_H
27 #define MICROPY_INCLUDED_PY_BUILTIN_H
28 
29 #include "py/obj.h"
30 
31 mp_obj_t mp_builtin___import__(size_t n_args, const mp_obj_t *args);
32 mp_obj_t mp_builtin_open(size_t n_args, const mp_obj_t *args, mp_map_t *kwargs);
33 mp_obj_t mp_micropython_mem_info(size_t n_args, const mp_obj_t *args);
34 
35 MP_DECLARE_CONST_FUN_OBJ_VAR(mp_builtin___build_class___obj);
36 MP_DECLARE_CONST_FUN_OBJ_VAR_BETWEEN(mp_builtin___import___obj);
37 MP_DECLARE_CONST_FUN_OBJ_1(mp_builtin___repl_print___obj);
38 MP_DECLARE_CONST_FUN_OBJ_1(mp_builtin_abs_obj);
39 MP_DECLARE_CONST_FUN_OBJ_1(mp_builtin_all_obj);
40 MP_DECLARE_CONST_FUN_OBJ_1(mp_builtin_any_obj);
41 MP_DECLARE_CONST_FUN_OBJ_1(mp_builtin_bin_obj);
42 MP_DECLARE_CONST_FUN_OBJ_1(mp_builtin_callable_obj);
43 MP_DECLARE_CONST_FUN_OBJ_VAR_BETWEEN(mp_builtin_compile_obj);
44 MP_DECLARE_CONST_FUN_OBJ_1(mp_builtin_chr_obj);
45 MP_DECLARE_CONST_FUN_OBJ_2(mp_builtin_delattr_obj);
46 MP_DECLARE_CONST_FUN_OBJ_VAR_BETWEEN(mp_builtin_dir_obj);
47 MP_DECLARE_CONST_FUN_OBJ_2(mp_builtin_divmod_obj);
48 MP_DECLARE_CONST_FUN_OBJ_VAR_BETWEEN(mp_builtin_eval_obj);
49 MP_DECLARE_CONST_FUN_OBJ_VAR_BETWEEN(mp_builtin_exec_obj);
50 MP_DECLARE_CONST_FUN_OBJ_VAR_BETWEEN(mp_builtin_execfile_obj);
51 MP_DECLARE_CONST_FUN_OBJ_VAR_BETWEEN(mp_builtin_getattr_obj);
52 MP_DECLARE_CONST_FUN_OBJ_3(mp_builtin_setattr_obj);
53 MP_DECLARE_CONST_FUN_OBJ_0(mp_builtin_globals_obj);
54 MP_DECLARE_CONST_FUN_OBJ_2(mp_builtin_hasattr_obj);
55 MP_DECLARE_CONST_FUN_OBJ_1(mp_builtin_hash_obj);
56 MP_DECLARE_CONST_FUN_OBJ_VAR_BETWEEN(mp_builtin_help_obj);
57 MP_DECLARE_CONST_FUN_OBJ_1(mp_builtin_hex_obj);
58 MP_DECLARE_CONST_FUN_OBJ_1(mp_builtin_id_obj);
59 MP_DECLARE_CONST_FUN_OBJ_2(mp_builtin_isinstance_obj);
60 MP_DECLARE_CONST_FUN_OBJ_2(mp_builtin_issubclass_obj);
61 MP_DECLARE_CONST_FUN_OBJ_1(mp_builtin_iter_obj);
62 MP_DECLARE_CONST_FUN_OBJ_1(mp_builtin_len_obj);
63 MP_DECLARE_CONST_FUN_OBJ_0(mp_builtin_locals_obj);
64 MP_DECLARE_CONST_FUN_OBJ_KW(mp_builtin_max_obj);
65 MP_DECLARE_CONST_FUN_OBJ_KW(mp_builtin_min_obj);
66 MP_DECLARE_CONST_FUN_OBJ_1(mp_builtin_next_obj);
67 MP_DECLARE_CONST_FUN_OBJ_1(mp_builtin_oct_obj);
68 MP_DECLARE_CONST_FUN_OBJ_1(mp_builtin_ord_obj);
69 MP_DECLARE_CONST_FUN_OBJ_VAR_BETWEEN(mp_builtin_pow_obj);
70 MP_DECLARE_CONST_FUN_OBJ_KW(mp_builtin_print_obj);
71 MP_DECLARE_CONST_FUN_OBJ_1(mp_builtin_repr_obj);
72 MP_DECLARE_CONST_FUN_OBJ_VAR_BETWEEN(mp_builtin_round_obj);
73 MP_DECLARE_CONST_FUN_OBJ_KW(mp_builtin_sorted_obj);
74 MP_DECLARE_CONST_FUN_OBJ_VAR_BETWEEN(mp_builtin_sum_obj);
75 // Defined by a port, but declared here for simplicity
76 MP_DECLARE_CONST_FUN_OBJ_VAR_BETWEEN(mp_builtin_input_obj);
77 MP_DECLARE_CONST_FUN_OBJ_KW(mp_builtin_open_obj);
78 
79 MP_DECLARE_CONST_FUN_OBJ_2(mp_namedtuple_obj);
80 
81 MP_DECLARE_CONST_FUN_OBJ_2(mp_op_contains_obj);
82 MP_DECLARE_CONST_FUN_OBJ_2(mp_op_getitem_obj);
83 MP_DECLARE_CONST_FUN_OBJ_3(mp_op_setitem_obj);
84 MP_DECLARE_CONST_FUN_OBJ_2(mp_op_delitem_obj);
85 
88 extern const mp_obj_module_t mp_module_array;
90 extern const mp_obj_module_t mp_module_io;
91 extern const mp_obj_module_t mp_module_math;
92 extern const mp_obj_module_t mp_module_cmath;
95 extern const mp_obj_module_t mp_module_sys;
96 extern const mp_obj_module_t mp_module_gc;
98 
100 
101 // extmod modules
102 extern const mp_obj_module_t mp_module_uerrno;
104 extern const mp_obj_module_t mp_module_uzlib;
105 extern const mp_obj_module_t mp_module_ujson;
106 extern const mp_obj_module_t mp_module_ure;
107 extern const mp_obj_module_t mp_module_uheapq;
112 extern const mp_obj_module_t mp_module_ussl;
113 extern const mp_obj_module_t mp_module_utimeq;
115 extern const mp_obj_module_t mp_module_lwip;
119 extern const mp_obj_module_t mp_module_btree;
120 
121 extern const char MICROPY_PY_BUILTINS_HELP_TEXT[];
122 
123 #endif // MICROPY_INCLUDED_PY_BUILTIN_H
MP_DECLARE_CONST_FUN_OBJ_3(mp_builtin_setattr_obj)
const mp_obj_dict_t mp_module_builtins_globals
const mp_obj_module_t mp_module_array
const mp_obj_module_t mp_module_lwip
const mp_obj_module_t mp_module_websocket
MP_DECLARE_CONST_FUN_OBJ_1(mp_builtin___repl_print___obj)
const mp_obj_module_t mp_module_collections
const mp_obj_module_t mp_module_ubinascii
const mp_obj_module_t mp_module_ussl
const mp_obj_module_t mp_module_ustruct
const mp_obj_module_t mp_module_ujson
const mp_obj_module_t mp_module___main__
Definition: runtime.c:53
const mp_obj_module_t mp_module_webrepl
const mp_obj_module_t mp_module_uhashlib
mp_obj_t mp_builtin___import__(size_t n_args, const mp_obj_t *args)
const mp_obj_module_t mp_module_urandom
const mp_obj_module_t mp_module_io
const mp_obj_module_t mp_module_uheapq
const mp_obj_module_t mp_module_sys
MP_DECLARE_CONST_FUN_OBJ_VAR(mp_builtin___build_class___obj)
const mp_obj_module_t mp_module_ure
const mp_obj_module_t mp_module_micropython
args
Definition: i18n.py:175
const mp_obj_module_t mp_module_thread
const mp_obj_module_t mp_module_machine
Definition: obj.h:356
const mp_obj_module_t mp_module_btree
const mp_obj_module_t mp_module_gc
const mp_obj_module_t mp_module_utimeq
const mp_obj_module_t mp_module_uerrno
const mp_obj_module_t mp_module_uzlib
MP_DECLARE_CONST_FUN_OBJ_VAR_BETWEEN(mp_builtin___import___obj)
MP_DECLARE_CONST_FUN_OBJ_0(mp_builtin_globals_obj)
mp_obj_t mp_micropython_mem_info(size_t n_args, const mp_obj_t *args)
const mp_obj_module_t mp_module_cmath
uint64_t mp_obj_t
Definition: obj.h:39
const mp_obj_module_t mp_module_builtins
Definition: modbuiltins.c:735
const mp_obj_module_t mp_module_uselect
const mp_obj_module_t mp_module_uctypes
mp_obj_t mp_builtin_open(size_t n_args, const mp_obj_t *args, mp_map_t *kwargs)
Definition: builtins.c:6
const char MICROPY_PY_BUILTINS_HELP_TEXT[]
MP_DECLARE_CONST_FUN_OBJ_KW(mp_builtin_max_obj)
MP_DECLARE_CONST_FUN_OBJ_2(mp_builtin_delattr_obj)
const mp_obj_module_t mp_module_framebuf
const mp_obj_module_t mp_module_math