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