Age | Commit message (Expand) | Author |
2017-07-31 | all: Use the name MicroPython consistently in comments | Alexander Steffen |
2017-05-09 | unix/main: Implement -m option for packages. | Paul Sokolovsky |
2017-05-06 | unix/main: Don't allow to specify too small heap size. | Paul Sokolovsky |
2017-05-01 | unix/main: Ignore SIGPIPE signal, instead make EPIPE arrive. | Paul Sokolovsky |
2017-04-11 | unix, windows: Use core-provided KeyboardInterrupt exception object. | Damien George |
2017-03-29 | unix: Convert mp_uint_t to size_t for use of mp_obj_list_get. | Damien George |
2017-03-14 | unix/main: Refactor to put lexer constructors all in one place. | Damien George |
2017-03-03 | unix: Remove remaining, obsolete traces of GNU readline support. | Damien George |
2017-02-07 | unix/main: Properly handle MICROPYPATH starting with ':'. | Paul Sokolovsky |
2016-12-22 | unix/main: Allow to print the parse tree in coverage build. | Damien George |
2016-10-21 | py: Be more specific with MP_DECLARE_CONST_FUN_OBJ macros. | Damien George |
2016-07-09 | unix/main: When preparing sys.path, allocate exact strings on uPy heap. | Paul Sokolovsky |
2016-07-08 | unix/main: Improve help for -X options a bit. | Paul Sokolovsky |
2016-07-08 | unix/main: Error out on unknown value of suffix in -X heapsize= option. | Paul Sokolovsky |
2016-06-28 | unix: Add basic thread support using pthreads. | Damien George |
2016-04-01 | unix: implement -i option (inspect - start REPL after script is finished) | Pavol Rusnak |
2016-01-29 | py/runtime: mp_stack_ctrl_init() should be called immediately on startup. | Paul Sokolovsky |
2016-01-29 | unix/main: Remove debug code left from MP_OBJ_TO_PTR refactor. | Paul Sokolovsky |
2016-01-11 | unix: Allow to build coverage build with OBJ_REPR_D. | Damien George |
2016-01-01 | extmod/moduos_dupterm: Make mp_uos_dupterm_tx_strn() function reusable. | Paul Sokolovsky |
2015-12-28 | unix: Implement uos.dupterm(). Conditional on MICROPY_PY_OS_DUPTERM. | Paul Sokolovsky |
2015-12-22 | unix: Properly cancel REPL input when Ctrl-C is pressed. | Damien George |
2015-12-18 | windows: Make keyboard_interrupt_obj available, it's standard feature. | Paul Sokolovsky |
2015-12-07 | unix/main: mp_verbose_flag available only if MICROPY_DEBUG_PRINTERS is true. | Paul Sokolovsky |
2015-12-04 | unix/main: Check pending exception at the end of code block execution. | Paul Sokolovsky |
2015-11-29 | py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. | Damien George |
2015-11-23 | unix/main: Get rid of perror() which uses stdio. | Paul Sokolovsky |
2015-11-22 | unix: Use printf() implementation in terms of mp_printf(). | Paul Sokolovsky |
2015-11-21 | py/emitglue: Host definition of mp_verbose_flag. | Paul Sokolovsky |
2015-11-13 | unix/main: Remove stray mp_printf() from previous commit. | Paul Sokolovsky |
2015-11-13 | main.c: Switch stderr printing from ANSI C to native POSIX. | Paul Sokolovsky |
2015-11-13 | unix/main: Use builtin unichar_isdigit() in preference if libc's. | Paul Sokolovsky |
2015-10-31 | all: Add py/mphal.h and use it in all ports. | Damien George |
2015-10-20 | unix: Use "Ctrl" as a name of the key, not "CTRL". | Paul Sokolovsky |
2015-10-12 | unix: Add exit and paste-mode hints to shell startup banner. | Damien George |
2015-10-12 | Rename "Micro Python" to "MicroPython" in REPL, help, readme's and misc. | Damien George |
2015-10-11 | repl: Add paste mode to friendly REPL, entered via CTRL-E. | Damien George |
2015-10-02 | py: Allocate parse nodes in chunks to reduce fragmentation and RAM use. | Damien George |
2015-09-19 | unix: Use MICROPY_HAL_H macro for header inclusion. | Alex March |
2015-09-12 | unix: Enable REPL auto-indent. | Damien George |
2015-08-22 | unix: Bump default heap size to 1MB (2MB on 64-bit systems). | Paul Sokolovsky |
2015-06-04 | unix: Allow to cat a script into stdin from the command line. | Damien George |
2015-05-30 | unix: Allow to override default sys.path value. | Paul Sokolovsky |
2015-05-27 | unix: Add option to use uPy readline, and enable by default. | Damien George |
2015-05-27 | unix: Factor out stdio and ctrl-C code to unix_mphal.c file. | Damien George |
2015-05-10 | unix: Print unhandled exception to stderr, like CPython does. | Paul Sokolovsky |
2015-05-08 | unix: Make extra-coverage function callable from Python scripts. | Damien George |
2015-05-08 | unix: Add special function to improve coverage. | Damien George |
2015-04-28 | py: Replace py-version.sh with makeversionhdr.py, written in Python. | Damien George |
2015-04-16 | py: Overhaul and simplify printf/pfenv mechanism. | Damien George |