Comment 1 for bug 494863

Revision history for this message
David Coles (dcoles) wrote :

Entering something like this will work:

>>> i = 0
>>> while True:
... i = i+1
... if i % 100000 == 0:
... print i

The issue here is that the termination should not have to wait for previous operation to complete. This is the same issue that prevents 'while True: pass' from being interuptable.