コード例 #1
0
def test_yieldify():
    inc = lambda x: x + 1
    yinc = yieldify(inc)
    assert list(yinc(3)) == [4]
コード例 #2
0
ファイル: test_core.py プロジェクト: AStorus/sympy
def test_yieldify():
    inc = lambda x: x + 1
    yinc = yieldify(inc)
    assert list(yinc(3)) == [4]