aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Modules/_xxtestfuzz/fuzz_pycompile_corpus/input3.py
blob: 9bc3a45ebe75daa6cfd706a5bcc6c3d01e993dd8 (plain) (blame)
1
2
3
4
5
6
def evens():
    i = 0
    while True:
        i += 1
        if i % 2 == 0:
            yield i