gen_context.py 107 B

123456789
  1. import gen_context2
  2. GLOBAL = "GLOBAL"
  3. def gen():
  4. print(GLOBAL)
  5. yield 1
  6. gen_context2.call(gen())