aboutsummaryrefslogtreecommitdiff
path: root/unix
AgeCommit message (Expand)Author
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-04Use qstr id to create sys module.Paul Sokolovsky
2014-02-02unix time.clock(): Actually return float value.Paul Sokolovsky
2014-02-02unix: Add basic time module (with time() and clock() functions).Paul Sokolovsky
2014-02-01unix: libffi include path now found using pkg-config.Damien George
2014-02-01Add mpconfigport.mk file to configure which modules to include into build.Paul Sokolovsky
2014-01-29py: Add compile option to enable/disable source line numbers.Damien George
2014-01-29Add qstr_info() function and bindings for unix port.Damien George
2014-01-28unix: Fix compile warnings for ffi module on 64-bit machine.Damien George
2014-01-29unix: Initial implementation of FFI module.Paul Sokolovsky
2014-01-26Change -Og to -O0 in unix-cpy/Makefile; cast to small int in socket.c.Damien George
2014-01-26Merge pull request #226 from pfalcon/make-debugDamien George
2014-01-26unix socket: Add setsockopt() method.Paul Sokolovsky
2014-01-26unix socket: Add few more socket constants.Paul Sokolovsky
2014-01-26unix socket: Store module constants in data structure.Paul Sokolovsky
2014-01-25unix Makefile: -Og doesn't work (at least) with gcc 4.6 below.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-24Rework makefiles. Add proper dependency checking.Dave Hylands
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-20Don't preimport socket module.Paul Sokolovsky
2014-01-20unix socket: Add send() and recv() methods.Paul Sokolovsky
2014-01-20unix io.FileIO: Add iteration support.Paul Sokolovsky
2014-01-20Rename unix binary to 'micropython'.Damien George
2014-01-20unix: Implement sys.argv.Paul Sokolovsky
2014-01-19Change int to uint for n_args in function with variable arguments.Damien George
2014-01-19py: Add full traceback to exception printing.Damien George
2014-01-19Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-01-19py: Add module/function/class name to exceptions.Damien George
2014-01-19Fix incorrect prototype of mp_builtin_open() after args refactor.Paul Sokolovsky
2014-01-18Fix warnings about int/pointer casting.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-18Make VM stack grow upwards, and so no reversed args arrays.Damien George
2014-01-17Add long int implementation using C long long type, enable for unix port.Paul Sokolovsky
2014-01-15Merge branch 'str2int' of github.com:xyb/micropython into xyb-str2intDamien George
2014-01-15Merge branch 'str-repr' of github.com:pfalcon/micropython into pfalcon-str-reprDamien George
2014-01-15Merge branch 'master' of github.com:dpgeorge/micropythonDamien George
2014-01-15Add unbuffered readline() implementation for Raw I/O files.Paul Sokolovsky
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-14Merge pull request #170 from chipaca/masterDamien George