aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2014-01-20Don't preimport socket module.Paul Sokolovsky
2014-01-20unix socket: Add send() and recv() methods.Paul Sokolovsky
2014-01-20stream_read(): Shrink memory block to actual read size.Paul Sokolovsky
2014-01-20unix io.FileIO: Add iteration support.Paul Sokolovsky
2014-01-20stream: Add generic unbuffered iternext method.Paul Sokolovsky
2014-01-20mp_identity(): Add generic identity function.Paul Sokolovsky
2014-01-20mp_obj_get_qstr(): Handle MP_OBJ_QSTR.Paul Sokolovsky
2014-01-20py: Put micropython module init code in builtinmp.c.Damien George
2014-01-20Merge pull request #198 from pfalcon/expose-memstatDamien George
2014-01-20Expose memory stats functions via "micropython" module.Paul Sokolovsky
2014-01-20Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-01-20Rename unix binary to 'micropython'.Damien George
2014-01-20Don't implicitly import "sys" module.Paul Sokolovsky
2014-01-20unix: Implement sys.argv.Paul Sokolovsky
2014-01-20Pre-create sys module.Paul Sokolovsky
2014-01-20Properly print MP_OBJ_QSTR objects.Paul Sokolovsky
2014-01-19Merge pull request #197 from pfalcon/mod-singletonsDamien George
2014-01-20Implement modules as singletons Python semantics.Paul Sokolovsky
2014-01-19Small changes to README.Damien George
2014-01-19Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-01-19stm: Upgrade ST peripheral library from 1.1.0 to 1.3.0.Damien George
2014-01-19Add README for tests/.Paul Sokolovsky
2014-01-19Add directory for I/O tests with basic test for file methods.Paul Sokolovsky
2014-01-19stm: Upgrade to latest CMSIS libraries.Damien George
2014-01-19Move tests in basic/tests/ up one level preparating to multiple test dirs.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-19Add socket examples (simple HTTP client and server).Paul Sokolovsky
2014-01-19py: Temporary fix for bug where not enough VM state is allocated.Damien George
2014-01-19Tiny optimisation in objlist.c; a new test for inheritance.Damien George
2014-01-18Fix warnings about int/pointer casting.Damien George
2014-01-18Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-01-18py: Fix VM/runtime unpack sequence bug, Issue #193.Damien George
2014-01-19Add objarray.h .Paul Sokolovsky
2014-01-18Merge pull request #194 from pfalcon/socketDamien George
2014-01-18Merge pull request #192 from pfalcon/arraysDamien 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-18Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-01-18Improve method lookup in mp_obj_class_lookup.Damien George
2014-01-18Add skeleton implementation of array.array and bytearray.Paul Sokolovsky
2014-01-18Add testcase for subclassing builtin type and calling native method (broken).Paul Sokolovsky
2014-01-18Implement framework for class-defined built-in operators.Damien George
2014-01-18Merge pull request #191 from pfalcon/store-itemDamien George
2014-01-18Merge branch 'master' of github.com:dpgeorge/micropythonDamien George
2014-01-18int: Add value accessors: mp_obj_int_get() & mp_obj_int_get_checked().Paul Sokolovsky
2014-01-18Make VM stack grow upwards, and so no reversed args arrays.Damien George