Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Change some parts of the core API to use mp_uint_t instead of uint/int. | Damien George | 2014-08-30 |
| | | | | Addressing issue #50, still some way to go yet. | ||
* | Rename machine_(u)int_t to mp_(u)int_t. | Damien George | 2014-07-03 |
| | | | | See discussion in issue #50. | ||
* | py: Rename globally-accessible tuple functions, prefix with mp_obj_. | Damien George | 2014-05-11 |
| | | | | | Likely there are other functions that should be renamed, but this is a start. | ||
* | objnamedtuple: Support iteration. | Paul Sokolovsky | 2014-05-10 |
| | |||
* | Add license header to (almost) all files. | Damien George | 2014-05-03 |
| | | | | | | | Blanket wide to all .c and .h files. Some files originating from ST are difficult to deal with (license wise) so it was left out of those. Also merged modpyb.h, modos.h, modstm.h and modtime.h in stmhal/. | ||
* | py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr. | Damien George | 2014-04-17 |
| | | | | mp_obj_t->subscr now does load/store/delete. | ||
* | namedtuple: Inherit unary/binary ops from tuple base class. | Paul Sokolovsky | 2014-03-03 |
| | |||
* | type->print(): Distinguish str() and repr() variety by passing extra param. | Paul Sokolovsky | 2014-01-15 |
| | |||
* | Add objtuple.h to allow embedding of tuples inside other objects. | Paul Sokolovsky | 2014-01-14 |
This is useful because tuple is closest analog of C static array. |