aboutsummaryrefslogtreecommitdiff
path: root/py/objfun.c
AgeCommit message (Expand)Author
2014-02-15Change mp_obj_type_t.name from const char * to qstr.Damien George
2014-02-12Remove mp_obj_new_exception_msg_1_arg and _2_arg.Damien George
2014-02-12Replace global "static" -> "STATIC", to allow "analysis builds". Part 1.Paul Sokolovsky
2014-02-08py: Pass keyword args to native functions by using the stack.Damien George
2014-02-01py: mp_execute_byte_code has 2 arg arrays, for more efficient default params.Damien George
2014-02-01Implement default function arguments (for Python functions).Paul Sokolovsky
2014-01-26Functions of fixed number of args are special-cased only for 3 or less args.Paul Sokolovsky
2014-01-22Second stage of qstr revamp: uPy str object can be qstr or not.Damien George
2014-01-21Revamp qstrs: they now include length and hash.Damien George
2014-01-18Make VM stack grow upwards, and so no reversed args arrays.Damien George
2014-01-13Merge remote-tracking branch 'upstream/master' into builtinsJohn R. Lenton
2014-01-13Made sorted() raise an exception instead of aborting when given no arguments;...John R. Lenton
2014-01-13Consolidate rt_make_function_[0123] to rt_make_function_n.Damien George
2014-01-13Initialize is_kw for dynamically allocated mp_obj_fun_native_t ojects.Dave Hylands
2014-01-08py: Stuff qstr in object pointer; keys for mp_map_t are now always mp_obj_t.Damien George
2014-01-07Merge remote-tracking branch 'upstream/master' into listsort. Lots of conflic...John R. Lenton
2014-01-07This implements a better (more python-conformant) list.sort.John R. Lenton
2014-01-07Merge branch 'cplusplus' of https://github.com/ian-v/micropython into ian-v-c...Damien George
2014-01-06Co-exist with C++ (issue #85)ian-v
2014-01-05Merge pull request #92 from chipaca/list_insertDamien George
2014-01-05Merge remote-tracking branch 'upstream/master' into list_insertJohn R. Lenton
2014-01-05Convert many object types structs to use C99 tagged initializer syntax.Paul Sokolovsky
2014-01-04Convert Python types to proper Python type hierarchy.Damien George
2014-01-04Split qstr into pools, and put initial pool in ROM.Damien George
2014-01-04Implements list.insert. Fixes issue #61.John R. Lenton
2014-01-03Basic implementation of import.Damien George
2013-12-29Change memory allocation API to require size for free and realloc.Damien
2013-12-21Change object representation from 1 big union to individual structs.Damien