jython / jython3

A sandboxed attempt at v3 (not maintained)
Other
299 stars 59 forks source link

add yield from support #21

Closed isaiah closed 8 years ago

isaiah commented 8 years ago

It's very naive at the moment, equivalent to:

yield from a
# to
for _x in a:
  yield _x
isaiah commented 8 years ago

This is not complete, closing