Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python main thread interruption

Can anyone explain how the interrupt_main() method works in Python?

I've got this piece of Python code :

import time, thread

def f():
    time.sleep(5)
    thread.interrupt_main()

def g():
    thread.start_new_thread(f, ())
    time.sleep(10)
print time.time()
try:
    g()
except KeyboardInterrupt:
    print time.time()

And when I try to run it, it gives me the following output :

1380542215.5
# ... 10 seconds break...
1380542225.51

However, if I interrupt the program manually (CTRL-C), the thread is interrupted correctly :

1380542357.58
^C1380542361.49

Why does the thread interruption only occur after 10 seconds (and not 5) in the first example?

I found an ancient thread n Python mailing list, but it explains nearly nothing.

like image 636
Danstahr Avatar asked Sep 30 '13 12:09

Danstahr


1 Answers

raise KeyboardInterrupt does not interrupt a time.sleep(). The former is handled entirely inside the python interpreter, the latter invokes an operating system function.

So, in your case, the keyboard interrupt was handled, but only when time.sleep() completed its system call.

Try this instead:

def g():
    thread.start_new_thread(f, ())
    for _ in range(10): 
        time.sleep(1)
like image 127
Robᵩ Avatar answered Oct 19 '22 22:10

Robᵩ