summaryrefslogtreecommitdiffstatshomepage
path: root/py/objfun.c
Commit message (Expand)AuthorAge
* py: Make globals and locals proper dictionary objects.Damien George2014-04-05
* py: Change nlr_jump to nlr_raise, to aid in debugging.Damien George2014-04-05
* objfun: Add equality support.Paul Sokolovsky2014-04-05
* py: Disable dump_args function call entirely when not debugging.Damien George2014-03-31
* objgenerator: Handle default args to generator functions.Paul Sokolovsky2014-03-30
* Merge map.h into obj.h.Damien George2014-03-30
* Rename rt_* to mp_*.Damien George2014-03-30
* py: Rename old const type objects to mp_type_* for consistency.Damien George2014-03-29
* py: Change mp_const_* objects to macros.Damien George2014-03-29
* py: Put n_state for bytecode in the bytecode prelude.Damien George2014-03-27
* py: Clean up includes.xbe2014-03-17
* Implement ROMable modules. Add math module.Damien George2014-03-08
* py: Fix overriding of default arguments.Damien George2014-03-03
* py: Remove more var arg names fro macros with var args.Damien George2014-02-26
* py: Reduce size of mp_obj_fun_native_t struct by packing ints.Damien George2014-02-26
* py: Take out bitfield entries from their own structure.Damien George2014-02-26
* Add pin mapping code.Dave Hylands2014-02-17
* Support passing positional args as keywords to bytecode functions.Paul Sokolovsky2014-02-16
* py: Pass keyword arguments to byte code.Damien George2014-02-16
* py: Implement *vargs support.Damien George2014-02-16
* py: VM never throws an exception, instead returns a status and value.Damien George2014-02-15
* Implement proper exception type hierarchy.Damien George2014-02-15
* Change mp_obj_type_t.name from const char * to qstr.Damien George2014-02-15
* Remove mp_obj_new_exception_msg_1_arg and _2_arg.Damien George2014-02-12
* Replace global "static" -> "STATIC", to allow "analysis builds". Part 1.Paul Sokolovsky2014-02-12
* py: Pass keyword args to native functions by using the stack.Damien George2014-02-08
* py: mp_execute_byte_code has 2 arg arrays, for more efficient default params.Damien George2014-02-01
* Implement default function arguments (for Python functions).Paul Sokolovsky2014-02-01
* Functions of fixed number of args are special-cased only for 3 or less args.Paul Sokolovsky2014-01-26
* Second stage of qstr revamp: uPy str object can be qstr or not.Damien George2014-01-22
* Revamp qstrs: they now include length and hash.Damien George2014-01-21
* Make VM stack grow upwards, and so no reversed args arrays.Damien George2014-01-18
* Merge remote-tracking branch 'upstream/master' into builtinsJohn R. Lenton2014-01-13
|\
| * Consolidate rt_make_function_[0123] to rt_make_function_n.Damien George2014-01-13
| * Initialize is_kw for dynamically allocated mp_obj_fun_native_t ojects.Dave Hylands2014-01-13
* | Made sorted() raise an exception instead of aborting when given no arguments;...John R. Lenton2014-01-13
|/
* py: Stuff qstr in object pointer; keys for mp_map_t are now always mp_obj_t.Damien George2014-01-08
* Merge remote-tracking branch 'upstream/master' into listsort. Lots of conflic...John R. Lenton2014-01-07
|\
| * Merge branch 'cplusplus' of https://github.com/ian-v/micropython into ian-v-c...Damien George2014-01-07
| |\
| | * Co-exist with C++ (issue #85)ian-v2014-01-06
| |/
* / This implements a better (more python-conformant) list.sort.John R. Lenton2014-01-07
|/
* Merge pull request #92 from chipaca/list_insertDamien George2014-01-05
|\
| * Merge remote-tracking branch 'upstream/master' into list_insertJohn R. Lenton2014-01-05
| |\
| * | Implements list.insert. Fixes issue #61.John R. Lenton2014-01-04
* | | Convert many object types structs to use C99 tagged initializer syntax.Paul Sokolovsky2014-01-05
| |/ |/|
* | Convert Python types to proper Python type hierarchy.Damien George2014-01-04
* | Split qstr into pools, and put initial pool in ROM.Damien George2014-01-04
|/
* Basic implementation of import.Damien George2014-01-03
* Change memory allocation API to require size for free and realloc.Damien2013-12-29
* Change object representation from 1 big union to individual structs.Damien2013-12-21