aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
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
2014-01-18Add store_item() virtual method to type to implement container[index] = val.Paul Sokolovsky
2014-01-18Add OverflowError and use it for small int overflow instead of assert.Paul Sokolovsky
2014-01-17Merge pull request #184 from pfalcon/int-longlongDamien George
2014-01-17Implement LOAD_CONST_INT (by dispatching to int object implementation).Paul Sokolovsky
2014-01-17Add long int implementation using C long long type, enable for unix port.Paul Sokolovsky
2014-01-16Merge branch 'master' of github.com:dpgeorge/micropythonDamien George
2014-01-16stm: Add stm import support.Damien George
2014-01-16Add empty (false) value testing for strings, tuples, lists, dicts.Paul Sokolovsky
2014-01-16Merge pull request #180 from pfalcon/examples-improveDamien George
2014-01-16Add empty "micropython" module to allow more seamless CPython portability.Paul Sokolovsky
2014-01-16Add dummy micropython module to enable mandel.py run with CPython.Paul Sokolovsky
2014-01-16conwaylife.py: Give people chance to enjoy the show.Paul Sokolovsky
2014-01-16CPython pyb.py placeholder: Implement delay().Paul Sokolovsky
2014-01-16Make file.read() and file.read(-1) call out to file.readall().Paul Sokolovsky
2014-01-16Do not assume that vstr buf is the same after it was extended.Paul Sokolovsky
2014-01-16str.format: Don't assume that '}' immediately follows '{', skip insides.Paul Sokolovsky
2014-01-15Add errno=0 before call.Damien George
2014-01-15stm: Fix print methods with new kind argument.Damien George
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 'builtins' of github.com:chipaca/micropython into chipaca-builtinsDamien George
2014-01-15Merge branch 'master' of github.com:dpgeorge/micropythonDamien George
2014-01-15Implement eval.Damien George
2014-01-15Add unbuffered readline() implementation for Raw I/O files.Paul Sokolovsky
2014-01-15Implement repr.Damien George