示例#1
0
文件: test.py 项目: KeyserSosa/swirl
def square(a):
    print "running square"
    yield swirl.return_(a ** 2)
    print "this line should never be executed (square)"
示例#2
0
文件: test.py 项目: KeyserSosa/swirl
def second(a):
    print "running second"
    yield swirl.return_(square(a))
    print "this line should never be executed (second)"