Message 157674 - Python tracker
Message157674
| 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 | <1333737445.67.0.92930472631.issue13749@psf.upfronthosting.co.za> |
| 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:25 | weirdink13 | set | recipients: + weirdink13, giampaolo.rodola, r.david.murray, teamnoir |
| 2012-04-06 18:37:25 | weirdink13 | set | messageid: <1333737445.67.0.92930472631.issue13749@psf.upfronthosting.co.za> |
| 2012-04-06 18:37:25 | weirdink13 | link | issue13749 messages |
| 2012-04-06 18:37:25 | weirdink13 | create | |