summaryrefslogtreecommitdiffstatshomepage
path: root/py/runtime.c
Commit message (Expand)AuthorAge
* py: Implement bool unary op; tidy up unary op dispatch.Damien George2014-01-23
* py: Initialise loaded_module map in rt_init.Damien George2014-01-22
* Second stage of qstr revamp: uPy str object can be qstr or not.Damien George2014-01-22
* Merge branch 'master' of github.com:micropython/micropythonDamien George2014-01-21
|\
| * Add dummy bytes() constructor.Paul Sokolovsky2014-01-20
* | Revamp qstrs: they now include length and hash.Damien George2014-01-21
|/
* py: Put micropython module init code in builtinmp.c.Damien George2014-01-20
* Expose memory stats functions via "micropython" module.Paul Sokolovsky2014-01-20
* Don't implicitly import "sys" module.Paul Sokolovsky2014-01-20
* Pre-create sys module.Paul Sokolovsky2014-01-20
* py: Add module/function/class name to exceptions.Damien George2014-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
* | Improve method lookup in mp_obj_class_lookup.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
|\|
| * 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
|/
* 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
* 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
* | 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
* | | Implement eval.Damien George2014-01-15
* | | Implement repr.Damien George2014-01-15
| |/ |/|
* | Merge pull request #142 from chipaca/containmentDamien George2014-01-14
|\ \ | |/ |/|
| * Merge remote-tracking branch 'upstream/master' into containmentJohn R. Lenton2014-01-13
| |\
| * \ Merge remote-tracking branch 'upstream/master' into containmentJohn R. Lenton2014-01-13
| |\ \
| * \ \ Merge remote-tracking branch 'upstream/master' into containmentJohn R. Lenton2014-01-11
| |\ \ \
| * | | | Implemented support for `in` and `not in` operators.John R. Lenton2014-01-11
* | | | | Merge pull request #165 from chipaca/builtinsDamien George2014-01-14
|\ \ \ \ \
| * \ \ \ \ Merge remote-tracking branch 'upstream/master' into builtinsJohn R. Lenton2014-01-13
| |\ \ \ \ \ | | | |_|_|/ | | |/| | |
| * | | | | sortedJohn R. Lenton2014-01-13
| * | | | | added zip()John R. Lenton2014-01-13
| | |_|_|/ | |/| | |
* | | | | Implement "is" and "is not" operators.Paul Sokolovsky2014-01-15
| |/ / / |/| | |
* | | | Consolidate rt_make_function_[0123] to rt_make_function_n.Damien George2014-01-13
* | | | Cleanup built-ins, and fix some compiler warnings/errors.Damien George2014-01-13
|/ / /
* | | Add proper checks for fits-in-small-int. Make it reusable.Paul Sokolovsky2014-01-12
* | | Merge pull request #146 from pfalcon/assert-excDamien George2014-01-12
|\ \ \
| * | | Add AssertionError.Paul Sokolovsky2014-01-12
* | | | rt_binary_op(): Don't fall thru in case small_int op result doesn't fit back.Paul Sokolovsky2014-01-12
|/ / /
* | / py: Implement staticmethod and classmethod (internally).Damien George2014-01-11
| |/ |/|
* | py: Fix bug where == and != not handled for small_ints.Damien George2014-01-11
|/
* unified the bopsJohn R. Lenton2014-01-11