aboutsummaryrefslogtreecommitdiff
path: root/unix/main.c
AgeCommit message (Expand)Author
2014-04-13py, unix: Convert sys module to static representation.Paul Sokolovsky
2014-04-10unix: Add option to only compile, and not execute code.Damien George
2014-04-08unix: Oops, remove nlr_jump test in main.Damien George
2014-04-08Add a check for NULL nlr_top in nlr_jump.Damien George
2014-04-08Improve REPL detecting when input needs to continue.Damien George
2014-04-08unix, windows: There's no "help" builtin.Paul Sokolovsky
2014-04-07Add uPy welcome message to UNIX and Windows ports; update Teensy port.Damien George
2014-04-06py: Add option to compiler to specify default code emitter.Damien George
2014-04-04unix: Use STATIC modifier to enable code size analysis via map file.Paul Sokolovsky
2014-04-04unix: Routines related to terminal reading should use system malloc.Paul Sokolovsky
2014-04-04unix: Allocate more heap memory by default on 64 bit machines.Damien George
2014-04-02unix: Use argv[0] for command name in usage.Paul Sokolovsky
2014-04-02unix: Support #if-able impl-specific cmdline options.Paul Sokolovsky
2014-04-02unix: Properly recognize and report when script on cmdline not found.Paul Sokolovsky
2014-03-31py: Remove old "run time" functions that were 1 liners.Damien George
2014-03-30Merge map.h into obj.h.Damien George
2014-03-30Rename rt_* to mp_*.Damien George
2014-03-26Remove mp_obj_type_t.methods entry and use .locals_dict instead.Damien George
2014-03-26Change mp_method_t.name from const char * to qstr.Damien George
2014-03-16unix: Clean up includes.xbe
2014-03-08unix: Make usage info reflect actual usage of -X option.Damien George
2014-03-08Implement ROMable modules. Add math module.Damien George
2014-03-04unix: Add to usage print-out telling about -X option.Damien George
2014-03-04unix: Allow to set heap size using "-X heapsize=N" option.Paul Sokolovsky
2014-02-16Make DEBUG_printf() a proper function, implementation is port-dependent.Paul Sokolovsky
2014-02-15Implement proper exception type hierarchy.Damien George
2014-02-15Change mp_obj_type_t.name from const char * to qstr.Damien George
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