summaryrefslogtreecommitdiff
path: root/py/objfun.c
AgeCommit message (Expand)Author
2014-09-23stmhal: Initialise stack pointer correctly.Damien George
2014-09-04py: Use variable length encoded uints in more places in bytecode.Damien George
2014-08-30Change some parts of the core API to use mp_uint_t instead of uint/int.Damien George
2014-08-24py: Fix bug where GC collected native/viper/asm function data.Damien George
2014-08-15py: Viper can now store to global.Damien George
2014-08-15py: Allow viper to have type annotations.Damien George
2014-07-03Rename machine_(u)int_t to mp_(u)int_t.Damien George
2014-07-01stackctrl: Add "mp_" prefix.Paul Sokolovsky
2014-06-27py: Add portable framework to query/check C stack usage.Paul Sokolovsky
2014-06-11objfun: Remove no longer used mp_obj_fun_prepare_simple_args().Paul Sokolovsky
2014-06-11objfun: Factor out mp_setup_code_state() function to set up code_state object.Paul Sokolovsky
2014-06-08Merge branch 'alloca' of github.com:marcusva/micropython into marcusva-allocaDamien George
2014-06-08py: Simplify function call of a bytecode object.Damien George
2014-06-07py: Implement default keyword only args.Damien George
2014-06-07py: Merge mp_execute_bytecode into fun_bc_call.Damien George
2014-06-07- FreeBSD provides alloca() via stdlib.h, in contrast to Linux and WindowsMarcus von Appen
2014-06-01Rename bultins config variables to MICROPY_PY_BUILTINS_*.Damien George
2014-05-31objfun: Typo fixes in comments.Paul Sokolovsky
2014-05-21py: Rename MP_OBJ_NOT_SUPPORTED to MP_OBJ_NULL.Damien George
2014-05-17py: More const usage.Paul Sokolovsky
2014-05-13py, unix: Add copyright for modules I worked closely on.Paul Sokolovsky
2014-05-10py: Tidy up returning NULL which should be MP_OBJ_NOT_SUPPORTED.Damien George
2014-05-10py: Combine native emitters to 1 glue function; distinguish viper.Damien George
2014-05-10py: Rename byte_code to bytecode everywhere.Damien George
2014-05-03Add license header to (almost) all files.Damien George
2014-05-03Merge pull request #552 from stinos/mingw-allocaPaul Sokolovsky
2014-05-03objclosure, objcell: Print detailed representation if was requested.Paul Sokolovsky
2014-05-03py: Use <alloca.h> for alloca()stijn
2014-05-02py, unix: Make "mpconfig.h" be first included, as other headers depend on it.Paul Sokolovsky
2014-05-01objfun: More debug logging.Paul Sokolovsky
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