circuitpython/tests/import/gen_context.py
2021-03-15 19:27:36 +05:30

12 lines
109 B
Python

import gen_context2
GLOBAL = "GLOBAL"
def gen():
print(GLOBAL)
yield 1
gen_context2.call(gen())