Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | 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/. | ||
* | Search paths properly on import and execute __init__.py if it exists. | Damien George | 2014-02-05 |
| | |||
* | Implement mp_parse_node_free; print properly repr(string). | Damien George | 2014-01-25 |
| | |||
* | Add source file name and line number to error messages. | Damien George | 2014-01-18 |
| | | | | | Byte code has a map from byte-code offset to source-code line number, used to give better error messages. | ||
* | Convert parse errors to exceptions. | Damien George | 2014-01-15 |
| | | | | | Parser no longer prints an error, but instead returns an exception ID and message. | ||
* | py: Improve memory management for parser; add lexer error for bad line cont. | Damien George | 2014-01-12 |
| | |||
* | Move lexerstr to main py directory (everyone uses it). | Damien George | 2014-01-08 |
| | |||
* | Add ellipsis object. | Damien George | 2014-01-04 |
| | |||
* | Basic implementation of import. | Damien George | 2014-01-03 |
| | | | | | | import works for simple cases. Still work to do on finding the right script, and setting globals/locals correctly when running an imported function. | ||
* | Change object representation from 1 big union to individual structs. | Damien | 2013-12-21 |
| | | | | | | | | | | A big change. Micro Python objects are allocated as individual structs with the first element being a pointer to the type information (which is itself an object). This scheme follows CPython. Much more flexible, not necessarily slower, uses same heap memory, and can allocate objects statically. Also change name prefix, from py_ to mp_ (mp for Micro Python). | ||
* | Integrate new lexer stream with stm framework. | Damien | 2013-10-20 |
| | |||
* | Abstract out back-end stream functionality from lexer. | Damien | 2013-10-20 |
| | |||
* | Improve indent/dedent error checking and reporting. | Damien | 2013-10-09 |
| | |||
* | Initial commit. | Damien | 2013-10-04 |