aboutsummaryrefslogtreecommitdiff
path: root/py/objfun.c
AgeCommit message (Expand)Author
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
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