aboutsummaryrefslogtreecommitdiff
path: root/py/objfun.c
AgeCommit message (Expand)Author
2014-05-01objgenerator: Fix check for too few args passed to gen function.Paul Sokolovsky
2014-05-01objgenerator: .print(): Output real underlying function name.Paul Sokolovsky
2014-05-01py: Add tentative scheme for error messages configuration.Paul Sokolovsky
2014-05-01objfun: Add function name accessor and .print slot method.Paul Sokolovsky
2014-04-30objfun: Factor out function to report positional args mismatch.Paul Sokolovsky
2014-04-27py: Implement keyword-only args.Damien George
2014-04-20py: Add win32-specific header for alloca().Paul Sokolovsky
2014-04-20py: Add arg checking helper functions.Damien George
2014-04-18py: Allow to pass buffer protocol flags to get_buffer helper funcs.Damien George
2014-04-18py: Add typecode to buffer protocol.Damien George
2014-04-18py: Tidy up function argument error messages.Damien George
2014-04-17py: Simplify objfun/objgenerator connection, no need to call bc_get.Damien George
2014-04-17objfun: Add local header.Paul Sokolovsky
2014-04-13py: Fix mp_get_buffer, and use it in more places.Damien George
2014-04-13py: Provide more details for too few and too much args for Python fun calls.Paul Sokolovsky
2014-04-13py: Big improvements to inline assembler.Damien George
2014-04-11py: Change compile order for default positional and keyword args.Damien George
2014-04-10objfun: Fix default arguments filling loop, was broken in presense of kwargs.Paul Sokolovsky
2014-04-10objfun: More debug logging when calling a bytecode function.Paul Sokolovsky
2014-04-05py: Make globals and locals proper dictionary objects.Damien George
2014-04-05py: Change nlr_jump to nlr_raise, to aid in debugging.Damien George
2014-04-05objfun: Add equality support.Paul Sokolovsky
2014-03-31py: Disable dump_args function call entirely when not debugging.Damien George
2014-03-30objgenerator: Handle default args to generator functions.Paul Sokolovsky
2014-03-30Merge map.h into obj.h.Damien George
2014-03-30Rename rt_* to mp_*.Damien George
2014-03-29py: Rename old const type objects to mp_type_* for consistency.Damien George
2014-03-29py: Change mp_const_* objects to macros.Damien George
2014-03-27py: Put n_state for bytecode in the bytecode prelude.Damien George
2014-03-17py: Clean up includes.xbe
2014-03-08Implement ROMable modules. Add math module.Damien George
2014-03-03py: Fix overriding of default arguments.Damien George
2014-02-26py: Remove more var arg names fro macros with var args.Damien George
2014-02-26py: Reduce size of mp_obj_fun_native_t struct by packing ints.Damien George
2014-02-26py: Take out bitfield entries from their own structure.Damien George
2014-02-17Add pin mapping code.Dave Hylands
2014-02-16Support passing positional args as keywords to bytecode functions.Paul Sokolovsky
2014-02-16py: Pass keyword arguments to byte code.Damien George
2014-02-16py: Implement *vargs support.Damien George
2014-02-15py: VM never throws an exception, instead returns a status and value.Damien George
2014-02-15Implement proper exception type hierarchy.Damien George
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