Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
How to clone a Python generator object?

Suppose I have a generator 'stuff_to_try', I can try them one by one but if I had a method that wanted to go through the generator and that method is recursive, I want to let each recursion get a fresh new generator that starts at the first yield rather than where the last recursion left off.

def solve(something):
    if exit_condition(something):
        return

    next_to_try = stuff_to_try.next()
    while not if_works(next_to_try):
        next_to_try = stuff_to_try.next()
    solve(do_something(something))

Of course I can define stuff_to_try inside the recursive function but is there a better way? Is there an equivalent of stuff_to_try.clone().reset() or something?

share|improve this question

marked as duplicate by mgibsonbr, Gareth Rees, Peter O., Brooks Moses, dldnh Dec 17 '12 at 1:36

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 3 down vote accepted

Define the generator in a function:

def stuff_to_try():
    return (i for i in [stuff, to, try])

Then each time you want a new generator, just call the function.

def solve(something):
    if exit_condition(something):
        return

    for next_to_try in stuff_to_try():
        if_works(next_to_try):
            break
    solve(do_something(something))

If I read your question correctly, what you actually want is this:

def solve(something):
    if exit_condition(something):
        return

    for each in [stuff, to, try]:
        if_works(each):
            break
    solve(do_something(something))
share|improve this answer

The simplest answer is make it a list, then it will have the behaviour you want:

stuff_to_try = [i for i in [stuff, to, try]]

Any efficiency gains from being lazy are likely to be lost by recalculating the values again and again.

share|improve this answer
oops, bad example in the question. The list would be easier since I'm implying that there's a short finite list to generate but the real question is how to clone generators so suppose the generator is more complicated – xster Dec 15 '12 at 23:25
1  
Definitely the simplest, but sometimes not practical. A list might not fit in memory. – Mark Ransom Dec 16 '12 at 1:23
Of course, that's the downside. That said, it may be the only practical solution depending on the generator at hand. – Lattyware Dec 16 '12 at 1:26

Not the answer you're looking for? Browse other questions tagged or ask your own question.