This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author weirdink13
Recipients giampaolo.rodola, r.david.murray, teamnoir, weirdink13
Date 2012-04-06.18:37:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <[email protected]>
In-reply-to
Content
what about this?
def __init__(...):
    ...
    self.stop = False
    while True:
        (do stuff)
        if self.stop: break
def quit(or whatever it's called): self.stop = True
That would work without the backwards copatability issue right?
History
Date User Action Args
2012-04-06 18:37:25weirdink13setrecipients: + weirdink13, giampaolo.rodola, r.david.murray, teamnoir
2012-04-06 18:37:25weirdink13setmessageid: <[email protected]>
2012-04-06 18:37:25weirdink13linkissue13749 messages
2012-04-06 18:37:25weirdink13create