Message160024
I still wonder whether Graham Dumpleton's observation has merits.
Suppose we have these modules
# a.py
time.sleep(10)
import b
# b.py
time.sleep(10)
import a
# main.py
def x():
import a
def y():
import b
Now, if x and y are executed in separate threads - won't it deadlock? |
|
| Date |
User |
Action |
Args |
| 2012-05-05 19:19:12 | loewis | set | recipients:
+ loewis, gvanrossum, brett.cannon, ncoghlan, belopolsky, pitrou, vstinner, christian.heimes, grahamd, neologix, eric.snow |
| 2012-05-05 19:19:12 | loewis | set | messageid: <[email protected]> |
| 2012-05-05 19:19:12 | loewis | link | issue9260 messages |
| 2012-05-05 19:19:12 | loewis | create | |
|