Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. | Damien George | 2015-11-29 |
| | | | | | | | | | This allows the mp_obj_t type to be configured to something other than a pointer-sized primitive type. This patch also includes additional changes to allow the code to compile when sizeof(mp_uint_t) != sizeof(void*), such as using size_t instead of mp_uint_t, and various casts. | ||
* | py: Add MP_ROM_* macros and mp_rom_* types and use them. | Damien George | 2015-11-29 |
| | |||
* | py, extmod: Remove include of unnecessary system headers. | Damien George | 2015-03-14 |
| | |||
* | extmod: Prefix py/ for includes from py core directory. | Damien George | 2015-01-01 |
| | |||
* | Use MP_DEFINE_CONST_DICT macro to define module dicts. | Damien George | 2014-11-29 |
| | | | | | This is just a clean-up of the code. Generated code is exactly the same. | ||
* | extmod: Add uheapq module. | Damien George | 2014-10-22 |