summaryrefslogtreecommitdiff
path: root/doc/data/messages/r/return-arg-in-generator/good.py
blob: 72dc95e7bb5f03cc92b5e0c2daa9c2b46ec80ffd (plain)
1
2
3
4
def yield_numbers():
    for number in range(10):
        yield number
        return "I am now allowed!"  # This was not allowed in Python 3.3 and earlier.