summaryrefslogtreecommitdiff
path: root/tests/import/gen_context.py
blob: b7567cf02d96cd67379551b0a56c1ceb68677717 (plain)
1
2
3
4
5
6
7
8
9
10
11
import gen_context2

GLOBAL = "GLOBAL"


def gen():
    print(GLOBAL)
    yield 1


gen_context2.call(gen())