summaryrefslogtreecommitdiff
path: root/tests/micropython/heapalloc_yield_from.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/micropython/heapalloc_yield_from.py')
-rw-r--r--tests/micropython/heapalloc_yield_from.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/micropython/heapalloc_yield_from.py b/tests/micropython/heapalloc_yield_from.py
index 58788b1db..950717189 100644
--- a/tests/micropython/heapalloc_yield_from.py
+++ b/tests/micropython/heapalloc_yield_from.py
@@ -2,6 +2,7 @@
import micropython
+
# Yielding from a function generator
def sub_gen(a):
for i in range(a):
@@ -18,6 +19,7 @@ print(next(g))
print(next(g))
micropython.heap_unlock()
+
# Yielding from a user iterator
class G:
def __init__(self):