Daniel Swanson <popcorn.tomato.d...@gmail.com> added the comment:

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?

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue13749>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to