summaryrefslogtreecommitdiffstatshomepage
path: root/unix/input.c
Commit message (Collapse)AuthorAge
* all: Use the name MicroPython consistently in commentsAlexander Steffen2017-07-31
| | | | | There were several different spellings of MicroPython present in comments, when there should be only one.
* unix: Convert to use core-provided version of built-in import().Damien George2017-06-01
|
* unix: Remove remaining, obsolete traces of GNU readline support.Damien George2017-03-03
|
* py: Change type signature of builtin funs that take variable or kw args.Damien George2016-01-11
| | | | | With this patch the n_args parameter is changed type from mp_uint_t to size_t.
* py: Change struct and macro for builtin fun so they can be type checked.Damien George2016-01-03
|
* unix/input: Switch to POSIX I/O for history reading/writing.Paul Sokolovsky2015-11-16
|
* all: Add py/mphal.h and use it in all ports.Damien George2015-10-31
| | | | | | py/mphal.h contains declarations for generic mp_hal_XXX functions, such as stdio and delay/ticks, which ports should provide definitions for. A port will also provide mphalport.h with further HAL declarations.
* unix: Print an extra newline to the output on ctrl-Dstijn2015-05-30
| | | | | This assures the terminal prints it's prompt on a fresh line instead of appending it to the uPy prompt after exit.
* unix: Add option to use uPy readline, and enable by default.Damien George2015-05-27
| | | | | | This gets uPy readline working with unix port, with tab completion and history. GNU readline is still supported, configure using MICROPY_USE_READLINE variable.
* input.c: Fix line-endings after recent changes.Paul Sokolovsky2015-04-10
|
* unix: Automatically fix incompatible readline build options.stijn2015-04-09
|
* unix: Support readline history saving to file, improves interactive usage.Paul Sokolovsky2015-03-13
|
* unix: Prefix includes with py/; remove need for -I../py.Damien George2015-01-01
|
* unix: Remove unused CTRL-D definitionstijn2014-06-25
|
* Change const byte* to const char* where sensible.Damien George2014-05-25
| | | | | This removes need for some casts (at least, more than it adds need for new casts!).
* unix: Add missing stdio.h header for readline.Damien George2014-05-07
|
* Add input command for unixDave Hylands2014-05-07