This website requires JavaScript.
Explore
Help
Sign In
djsundog
/
circuitpython
Watch
1
Star
0
Fork
You've already forked circuitpython
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
d139c489ba
circuitpython
/
tests
/
bytecode
/
mp-tests
/
yield2.py
8 lines
105 B
Python
Raw
Normal View
History
Unescape
Escape
Add tests to test compiler and emitted byte code.
2013-12-29 13:21:02 -05:00
def
f
(
)
:
yield from
a
yield from
(
a
,
b
)
yield from
f
(
a
)
py, compiler: Allow lambda's to yield.
2014-04-11 09:10:21 -04:00
lambda
:
(
yield
)
lambda
:
(
yield
1
)
+
2