Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | py: Move to guarded includes, everywhere in py/ core. | Damien George | 2015-01-01 |
| | | | | Addresses issue #1022. | ||
* | py: Change namedtuple error messages to reduce code size. | Damien George | 2015-01-01 |
| | | | | | | We are not word-for-word compatible with CPython exceptions, so we are free to make them short but informative in order to reduce code size. Also, try to make messages the same as existing ones where possible. | ||
* | py: Make terse_arg_mismatch a global function and use it elsewhere. | Damien George | 2015-01-01 |
| | | | | Reduces code size when MICROPY_ERROR_REPORTING_TERSE is selected. | ||
* | objnamedtuple: Make sure to initialize type structure completely. | Paul Sokolovsky | 2015-01-01 |
| | |||
* | py: Allow keyword arguments for namedtuple | stijn | 2015-01-01 |
| | |||
* | py: Use sequence of strings for named tuple initialization | stijn | 2015-01-01 |
| | | | | | | - remove single string initialization style - take list of strings instead - store list in the type for fast lookup | ||
* | py: Make functions static where appropriate. | Damien George | 2014-12-10 |
| | |||
* | py: Convert [u]int to mp_[u]int_t where appropriate. | Damien George | 2014-10-03 |
| | | | | Addressing issue #50. | ||
* | 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 configuration variables controling Python features. | Damien George | 2014-05-24 |
| | | | | Now of the form MICROPY_PY_*. See issue #35. | ||
* | py, unix: Add copyright for modules I worked closely on. | Paul Sokolovsky | 2014-05-13 |
| | |||
* | 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, unix: Make "mpconfig.h" be first included, as other headers depend on it. | Paul Sokolovsky | 2014-05-02 |
| | | | | Specifically, nlr.h does. | ||
* | py: Make collections module configurable, enabled by default. | Damien George | 2014-04-26 |
| | |||
* | 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. | ||
* | py: Change nlr_jump to nlr_raise, to aid in debugging. | Damien George | 2014-04-05 |
| | | | | | | This does not affect code size or performance when debugging turned off. To address issue #420. | ||
* | py: Change mp_const_* objects to macros. | Damien George | 2014-03-29 |
| | | | | Addresses issue #388. | ||
* | namedtuple: Inherit unary/binary ops from tuple base class. | Paul Sokolovsky | 2014-03-03 |
| | |||
* | Add basic collections.namedtuple implementation. | Paul Sokolovsky | 2014-03-03 |