summaryrefslogtreecommitdiffstatshomepage
path: root/py
Commit message (Expand)AuthorAge
* Change int to uint for n_args in function with variable arguments.Damien George2014-01-19
* py: Add full traceback to exception printing.Damien George2014-01-19
* py: Add module/function/class name to exceptions.Damien George2014-01-19
* py: Temporary fix for bug where not enough VM state is allocated.Damien George2014-01-19
* Tiny optimisation in objlist.c; a new test for inheritance.Damien George2014-01-19
* Merge branch 'master' of github.com:micropython/micropythonDamien George2014-01-18
|\
| * Add objarray.h .Paul Sokolovsky2014-01-19
* | py: Fix VM/runtime unpack sequence bug, Issue #193.Damien George2014-01-18
|/
* Merge pull request #192 from pfalcon/arraysDamien George2014-01-18
|\
| * Add skeleton implementation of array.array and bytearray.Paul Sokolovsky2014-01-18
* | Add source file name and line number to error messages.Damien George2014-01-18
* | Improve method lookup in mp_obj_class_lookup.Damien George2014-01-18
|/
* Implement framework for class-defined built-in operators.Damien George2014-01-18
* Merge pull request #191 from pfalcon/store-itemDamien George2014-01-18
|\
| * Add store_item() virtual method to type to implement container[index] = val.Paul Sokolovsky2014-01-18
* | Merge branch 'master' of github.com:dpgeorge/micropythonDamien George2014-01-18
|\ \
| * | int: Add value accessors: mp_obj_int_get() & mp_obj_int_get_checked().Paul Sokolovsky2014-01-18
| |/
| * Add OverflowError and use it for small int overflow instead of assert.Paul Sokolovsky2014-01-18
* | Make VM stack grow upwards, and so no reversed args arrays.Damien George2014-01-18
|/
* Implement LOAD_CONST_INT (by dispatching to int object implementation).Paul Sokolovsky2014-01-17
* Add long int implementation using C long long type, enable for unix port.Paul Sokolovsky2014-01-17
* Add empty (false) value testing for strings, tuples, lists, dicts.Paul Sokolovsky2014-01-16
* Add empty "micropython" module to allow more seamless CPython portability.Paul Sokolovsky2014-01-16
* Make file.read() and file.read(-1) call out to file.readall().Paul Sokolovsky2014-01-16
* Do not assume that vstr buf is the same after it was extended.Paul Sokolovsky2014-01-16
* str.format: Don't assume that '}' immediately follows '{', skip insides.Paul Sokolovsky2014-01-16
* Add errno=0 before call.Damien George2014-01-15
* stm: Fix print methods with new kind argument.Damien George2014-01-15
* Merge branch 'str2int' of github.com:xyb/micropython into xyb-str2intDamien George2014-01-15
|\
| * add more tests and remove debug codexyb2014-01-15
| * int() test passedxyb2014-01-15
| * support int(str, basbase)xyb2014-01-14
| * Implemented int(str) in UNIXxyb2014-01-14
* | Merge branch 'str-repr' of github.com:pfalcon/micropython into pfalcon-str-reprDamien George2014-01-15
|\ \
| * | Implement str() and repr() builtin functions.Paul Sokolovsky2014-01-15
| * | type->print(): Distinguish str() and repr() variety by passing extra param.Paul Sokolovsky2014-01-15
* | | Merge branch 'builtins' of github.com:chipaca/micropython into chipaca-builtinsDamien George2014-01-15
|\ \ \
| * | | added filter()John R. Lenton2014-01-15
| * | | Added mapJohn R. Lenton2014-01-15
| * | | Merge remote-tracking branch 'upstream/master' into builtinsJohn R. Lenton2014-01-14
| |\| |
| * | | added enumerate()John R. Lenton2014-01-14
* | | | Merge branch 'master' of github.com:dpgeorge/micropythonDamien George2014-01-15
|\ \ \ \
| * | | | Add unbuffered readline() implementation for Raw I/O files.Paul Sokolovsky2014-01-15
| | |/ / | |/| |
* | | | Implement eval.Damien George2014-01-15
* | | | Implement repr.Damien George2014-01-15
* | | | Convert parse errors to exceptions.Damien George2014-01-15
|/ / /
* | | Merge pull request #173 from pfalcon/file-readallDamien George2014-01-14
|\ \ \
| * | | Add generic impl of stream .readall() method. Use one for unix io.FileIO.Paul Sokolovsky2014-01-13
| * | | Add "buffer management" and "shrink" API calls to vstr.Paul Sokolovsky2014-01-13
* | | | Merge pull request #161 from pfalcon/exc-more-pythonicDamien George2014-01-14
|\ \ \ \