summaryrefslogtreecommitdiffstatshomepage
path: root/py/objgenerator.c
Commit message (Expand)AuthorAge
* py/objgenerator: Don't raise RuntimeError if GeneratorExit ignored.Damien George2017-01-17
* py/objgenerator: When throwing an object, don't make an exc instance.Damien George2017-01-17
* py: Use mp_raise_msg helper function where appropriate.Damien George2016-10-17
* py: Rename struct mp_code_state to mp_code_state_t.Damien George2016-08-27
* py: Get rid of assert() in method argument checking functions.Paul Sokolovsky2016-08-12
* py/vm: "yield from" didn't handle MP_OBJ_STOP_ITERATION optimization.Paul Sokolovsky2016-04-28
* py: Change type signature of builtin funs that take variable or kw args.Damien George2016-01-11
* py: Change type of .make_new and .call args: mp_uint_t becomes size_t.Damien George2016-01-11
* py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.Damien George2015-11-29
* py: Add MP_ROM_* macros and mp_rom_* types and use them.Damien George2015-11-29
* py: Add constant table to bytecode.Damien George2015-11-13
* py: Reorganise bytecode layout so it's more structured, easier to edit.Damien George2015-11-13
* objgenerator: Can optimize StopIteration to STOP_ITERATION only if arg is None.Paul Sokolovsky2015-05-11
* objgenerator: If generator yielded STOP_ITERATION value, it's stopped.Paul Sokolovsky2015-05-11
* py: Add %q format support to mp_[v]printf, and use it.Damien George2015-04-16
* py: Overhaul and simplify printf/pfenv mechanism.Damien George2015-04-16
* py: Implement full func arg passing for native emitter.Damien George2015-04-07
* py: Allow retrieving a function's __name__.stijn2015-03-20
* py, unix: Allow to compile with -Wunused-parameter.Damien George2015-01-20
* py: Add "default" to switches to allow better code flow analysis.Damien George2015-01-14
* py: Move to guarded includes, everywhere in py/ core.Damien George2015-01-01
* py: Make functions static where appropriate.Damien George2014-12-10
* py: Store bytecode arg names in bytecode (were in own array).Damien George2014-10-25
* py: Use variable length encoded uints in more places in bytecode.Damien George2014-09-04
* Change some parts of the core API to use mp_uint_t instead of uint/int.Damien George2014-08-30
* Rename machine_(u)int_t to mp_(u)int_t.Damien George2014-07-03
* objgenerator: Finish refactor to use mp_setup_code_state().Paul Sokolovsky2014-06-11
* objgenerator: First iteration of refactor to use mp_setup_code_state().Paul Sokolovsky2014-06-11
* py: Merge mp_execute_bytecode into fun_bc_call.Damien George2014-06-07
* vm: Factor out structure with code execution state and pass it around.Paul Sokolovsky2014-05-31
* py: Reformat few long functions argument lists for clarity.Paul Sokolovsky2014-05-31
* py: More mp_identity usage.Paul Sokolovsky2014-05-17
* py, unix: Add copyright for modules I worked closely on.Paul Sokolovsky2014-05-13
* py: Rename byte_code to bytecode everywhere.Damien George2014-05-10
* py: Comment exc_state member from mp_obj_gen_instance_t as it gives troublestijn2014-05-05
* Add license header to (almost) all files.Damien George2014-05-03
* py, unix: Make "mpconfig.h" be first included, as other headers depend on it.Paul Sokolovsky2014-05-02
* objgenerator: .print(): Output real underlying function name.Paul Sokolovsky2014-05-01
* py: Add MP_OBJ_STOP_ITERATION and make good use of it.Damien George2014-04-17
* py: Simplify objfun/objgenerator connection, no need to call bc_get.Damien George2014-04-17
* objgenerator: Generator must execute in its defining lexical context.Paul Sokolovsky2014-04-17
* py: Clear state to MP_OBJ_NULL before executing byte code.Damien George2014-04-09
* py: Generators can have their locals closed over.Damien George2014-04-09
* py: Change nlr_jump to nlr_raise, to aid in debugging.Damien George2014-04-05
* objgenerator.throw(GeneratorExit) is not equivalent to .close().Paul Sokolovsky2014-03-31
* objgenerator: Another obscure case of propagating MP_OBJ_NULL optimization.Paul Sokolovsky2014-03-31
* py: Don't wrap necessary function calls in assert.Damien George2014-03-30
* Merge pull request #399 from pfalcon/gen-defargsDamien George2014-03-30
|\
| * objgenerator: Handle default args to generator functions.Paul Sokolovsky2014-03-30
* | py: Implement support for generalized generator protocol.Paul Sokolovsky2014-03-30
|/