In Python for the *nix, does time.sleep() block the thread or the process?
|
|
|
|
|
|
|
It blocks the thread. If you look in Modules/timemodule.c in the Python source, you'll see that in the call to
Which will print:
|
||
|
|
|
|
yes, agree with Burly. The thread will block, but the process is still alive. In a single threaded application, this means everything is blocked while you sleep. In a multithreaded application, only the thread you explicitly 'sleep' will block and the other threads still run within the process. |
||
|
|
|
|
It will just sleep the thread except in the case where your application has only a single thread, in which case it will sleep the thread and effectively the process as well. The python documentation on sleep doesn't specify this however, so I can certainly understand the confusion! |
||
|
|
|
Just the thread. |
||
|
|
