aboutsummaryrefslogtreecommitdiff
path: root/py/objgenerator.h
AgeCommit message (Collapse)Author
2014-03-26py: Swap around the double return value of mp_obj_gen_resume.Damien George
Just to keep things consistent :)
2014-03-26objgenerator: Implement return with value and .close() method.Paul Sokolovsky
Return with value gets converted to StopIteration(value). Implementation keeps optimizing against creating of possibly unneeded exception objects, so there're considerable refactoring to implement these features.