Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
builtins.h@0:4ab1392a0142, 2012-10-07 (annotated)
- Committer:
- gignops
- Date:
- Sun Oct 07 11:49:09 2012 +0000
- Revision:
- 0:4ab1392a0142
This project is an adaptation of tinypy code. The aim is to run python code on Mbed.; ; Have fun !
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| gignops | 0:4ab1392a0142 | 1 | #ifndef BUILTINS_H |
| gignops | 0:4ab1392a0142 | 2 | #define BUILTINS_H |
| gignops | 0:4ab1392a0142 | 3 | |
| gignops | 0:4ab1392a0142 | 4 | #include "tp.h" |
| gignops | 0:4ab1392a0142 | 5 | #include "list.h" |
| gignops | 0:4ab1392a0142 | 6 | #include "misc.h" |
| gignops | 0:4ab1392a0142 | 7 | #include "dict.h" |
| gignops | 0:4ab1392a0142 | 8 | #include "string.h" |
| gignops | 0:4ab1392a0142 | 9 | |
| gignops | 0:4ab1392a0142 | 10 | tp_obj tp_print(TP); |
| gignops | 0:4ab1392a0142 | 11 | tp_obj tp_bind(TP); |
| gignops | 0:4ab1392a0142 | 12 | tp_obj tp_min(TP); |
| gignops | 0:4ab1392a0142 | 13 | tp_obj tp_max(TP); |
| gignops | 0:4ab1392a0142 | 14 | tp_obj tp_copy(TP); |
| gignops | 0:4ab1392a0142 | 15 | tp_obj tp_len_(TP); |
| gignops | 0:4ab1392a0142 | 16 | tp_obj tp_assert(TP); |
| gignops | 0:4ab1392a0142 | 17 | tp_obj tp_range(TP); |
| gignops | 0:4ab1392a0142 | 18 | tp_obj tp_system(TP); |
| gignops | 0:4ab1392a0142 | 19 | tp_obj tp_istype(TP); |
| gignops | 0:4ab1392a0142 | 20 | tp_obj tp_float(TP); |
| gignops | 0:4ab1392a0142 | 21 | tp_obj tp_save(TP); |
| gignops | 0:4ab1392a0142 | 22 | tp_obj tp_load(TP); |
| gignops | 0:4ab1392a0142 | 23 | tp_obj tp_fpack(TP); |
| gignops | 0:4ab1392a0142 | 24 | tp_obj tp_abs(TP); |
| gignops | 0:4ab1392a0142 | 25 | tp_obj tp_int(TP); |
| gignops | 0:4ab1392a0142 | 26 | tp_num _roundf(tp_num v); |
| gignops | 0:4ab1392a0142 | 27 | tp_obj tp_round(TP); |
| gignops | 0:4ab1392a0142 | 28 | tp_obj tp_exists(TP); |
| gignops | 0:4ab1392a0142 | 29 | tp_obj tp_mtime(TP); |
| gignops | 0:4ab1392a0142 | 30 | |
| gignops | 0:4ab1392a0142 | 31 | |
| gignops | 0:4ab1392a0142 | 32 | #endif |