| Commit message (Expand) | Author | Age |
* | moductypes: Foreign data interface module, roughly based on ctype ideas. | Paul Sokolovsky | 2014-07-09 |
* | Rename machine_(u)int_t to mp_(u)int_t. | Damien George | 2014-07-03 |
* | py: Improvements to native emitter. | Damien George | 2014-06-30 |
* | py: Include mpconfig.h before all other includes. | Paul Sokolovsky | 2014-06-21 |
* | Prefix ARRAY_SIZE with micropython prefix MP_ | Emmanuel Blot | 2014-06-19 |
* | py: Implement default keyword only args. | Damien George | 2014-06-07 |
* | py: Fix stack underflow with optimised for loop. | Damien George | 2014-05-31 |
* | py: Fix break from within a for loop. | Damien George | 2014-05-30 |
* | py: Fix check of small-int overflow when parsing ints. | Damien George | 2014-05-28 |
* | py: Don't automatically intern strings in parser. | Damien George | 2014-05-25 |
* | Tidy up some configuration options. | Damien George | 2014-05-21 |
* | py: Rename BYTE_CODE to BYTECODE (this was missed in previous rename). | Damien George | 2014-05-12 |
* | py: Rename byte_code to bytecode everywhere. | Damien George | 2014-05-10 |
* | py, compiler: Add basic support for A=const(123). | Damien George | 2014-05-08 |
* | py, compiler: Improve passes; add an extra pass for native emitter. | Damien George | 2014-05-07 |
* | py, compiler: Start adding support for compile-time constants. | Damien George | 2014-05-07 |
* | Add license header to (almost) all files. | Damien George | 2014-05-03 |
* | py: Add '*' qstr for 'import *'; use blank qstr for comprehension arg. | Damien George | 2014-04-27 |
* | py: Remove unnecessary LOAD_CONST_ID bytecode. | Damien George | 2014-04-27 |
* | py: Save some ROM by shortening compiler error messages. | Damien George | 2014-04-27 |
* | py: Change the way function arguments are compiled. | Damien George | 2014-04-27 |
* | py: Implement keyword-only args. | Damien George | 2014-04-27 |
* | Add ARRAY_SIZE macro, and use it where possible. | Damien George | 2014-04-26 |
* | py: Add MICROPY_ENABLE_DOC_STRING, disabled by default. | Damien George | 2014-04-25 |
* | py: Add 'align' and 'data' meta-instructions to inline assembler. | Damien George | 2014-04-21 |
* | py: Making closures now passes pointer to stack, not a tuple for vars. | Damien George | 2014-04-20 |
* | py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr. | Damien George | 2014-04-17 |
* | py: Remove unique_codes from emitglue.c. Replace with pointers. | Damien George | 2014-04-13 |
* | py: Improve inline assembler; improve compiler constant folding. | Damien George | 2014-04-12 |
* | py, compiler: Fix up creation of default positionals tuple. | Damien George | 2014-04-12 |
* | py, compiler: Fix compiling of keyword args following named star. | Damien George | 2014-04-11 |
* | py: Change compile order for default positional and keyword args. | Damien George | 2014-04-11 |
* | py, compiler: Allow lambda's to yield. | Damien George | 2014-04-11 |
* | py: Implement compiling of *-expr within parenthesis. | Damien George | 2014-04-11 |
* | py: Add simple way of looking up constants in compiler. | Damien George | 2014-04-10 |
* | py: Simplify stack get/set to become stack adjust in emitters. | Damien George | 2014-04-10 |
* | py, compiler: Improve stack depth counting. | Damien George | 2014-04-10 |
* | py: Make labels unsigned ints (converted from int). | Damien George | 2014-04-10 |
* | py, compiler: Implement compiling of relative imports. | Damien George | 2014-04-10 |
* | py: Properly implement deletion of locals and derefs, and detect errors. | Damien George | 2014-04-09 |
* | py, compiler: Turn id_info_t.param into a set of flags. | Damien George | 2014-04-09 |
* | py, compile: Simplify initialisation of compiler structure. | Damien George | 2014-04-09 |
* | py, compile: Reduce size of compiler structure. | Damien George | 2014-04-09 |
* | py, compile: Combine have_star_arg, have_dbl_star_arg into star_flags. | Damien George | 2014-04-09 |
* | py, compiler: Clean up and compress scope/compile structures. | Damien George | 2014-04-09 |
* | py: implement UNPACK_EX byte code (for: a, *b, c = d) | Damien George | 2014-04-08 |
* | py: Improve compiler syntax errors; catch more errors. | Damien George | 2014-04-08 |
* | py: Implement more features in native emitter. | Damien George | 2014-04-06 |
* | py: Add option to compiler to specify default code emitter. | Damien George | 2014-04-06 |
* | py: Enable optimisation of multiplying 2 small ints in compiler. | Damien George | 2014-04-04 |