summaryrefslogtreecommitdiffstatshomepage
path: root/unix/main.c
Commit message (Expand)AuthorAge
* Rename "rawsocket" module to "microsocket".Paul Sokolovsky2014-02-08
* Search paths properly on import and execute __init__.py if it exists.Damien George2014-02-05
* Remove older import helpers, no longer used.Paul Sokolovsky2014-02-05
* unix: Be sure to add current/base dir of a script to sys.path.Paul Sokolovsky2014-02-05
* unix: Initialize sys.path from MICROPYPATH environment variable.Paul Sokolovsky2014-02-05
* unix: Add basic time module (with time() and clock() functions).Paul Sokolovsky2014-02-02
* Add mpconfigport.mk file to configure which modules to include into build.Paul Sokolovsky2014-02-01
* Add qstr_info() function and bindings for unix port.Damien George2014-01-29
* unix: Initial implementation of FFI module.Paul Sokolovsky2014-01-29
* Implement mp_parse_node_free; print properly repr(string).Damien George2014-01-25
* Add parse_node_free_struct() and use it to free parse tree after compilation.Paul Sokolovsky2014-01-25
* unix main: Free input line.Paul Sokolovsky2014-01-24
* Second stage of qstr revamp: uPy str object can be qstr or not.Damien George2014-01-22
* Merge branch 'master' of github.com:micropython/micropythonDamien George2014-01-21
|\
| * unix file: Refactor and add sys.stdout/stdin/stderr.Paul Sokolovsky2014-01-20
* | Revamp qstrs: they now include length and hash.Damien George2014-01-21
|/
* unix: Implement sys.argv.Paul Sokolovsky2014-01-20
* py: Add full traceback to exception printing.Damien George2014-01-19
* py: Add module/function/class name to exceptions.Damien George2014-01-19
* Merge pull request #194 from pfalcon/socketDamien George2014-01-18
|\
| * Add lean ("raw") socket module.Paul Sokolovsky2014-01-19
* | Add source file name and line number to error messages.Damien George2014-01-18
|/
* Merge branch 'str-repr' of github.com:pfalcon/micropython into pfalcon-str-reprDamien George2014-01-15
|\
| * type->print(): Distinguish str() and repr() variety by passing extra param.Paul Sokolovsky2014-01-15
* | Convert parse errors to exceptions.Damien George2014-01-15
|/
* py: Implement base class lookup, issubclass, isinstance.Damien George2014-01-09
* Improved type/class/instance code; mp_obj_type_t now has load_attr, store_attr.Damien George2014-01-09
* unix: Add basic implementation of io.FileIO object.Paul Sokolovsky2014-01-08
* Merge branch 'cplusplus' of https://github.com/ian-v/micropython into ian-v-c...Damien George2014-01-07
|\
| * Revert MP_BOOL, etc. and use <stdbool.h> insteadian-v2014-01-06
| * Co-exist with C++ (issue #85)ian-v2014-01-06
* | Factor and simplify Makefile's and mpconfig.Damien George2014-01-07
|/
* Convert many object types structs to use C99 tagged initializer syntax.Paul Sokolovsky2014-01-05
* Convert Python types to proper Python type hierarchy.Damien George2014-01-04
* Convert USE_READLINE config option to be consistent with others.Paul Sokolovsky2014-01-04
* Split qstr into pools, and put initial pool in ROM.Damien George2014-01-04
* Change mp_compile so that it returns a function object for the module.Damien George2014-01-03
* Basic implementation of import.Damien George2014-01-03
* malloc.h is obsolete.Edd Barrett2014-01-01
* Make GNU Readline usage optional (USE_READLINE define). Still enabled.Paul Sokolovsky2014-01-01
* Add readline history support.Paul Sokolovsky2014-01-01
* Change memory allocation API to require size for free and realloc.Damien2013-12-29
* py: implement some basic exception matching.Damien2013-12-29
* Change object representation from 1 big union to individual structs.Damien2013-12-21
* unix: include obj.h, and build additional py files.Damien2013-12-17
* Unix: add machine-specific sqrt support.Damien2013-11-09
* Fix compiler warnings in unix/main.c.Damien2013-11-03
* Test code for user objects.Damien2013-11-02
* Fix func decls with no arguments: () -> (void).Damien2013-10-23
* Improve REPL compount statement detection.Damien2013-10-22