This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author loewis
Recipients belopolsky, brett.cannon, christian.heimes, eric.snow, grahamd, gvanrossum, loewis, ncoghlan, neologix, pitrou, vstinner
Date 2012-05-05.19:19:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1336245552.85.0.336438703697.issue9260@psf.upfronthosting.co.za>
In-reply-to
Content
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?
History
Date User Action Args
2012-05-05 19:19:12loewissetrecipients: + loewis, gvanrossum, brett.cannon, ncoghlan, belopolsky, pitrou, vstinner, christian.heimes, grahamd, neologix, eric.snow
2012-05-05 19:19:12loewissetmessageid: <1336245552.85.0.336438703697.issue9260@psf.upfronthosting.co.za>
2012-05-05 19:19:12loewislinkissue9260 messages
2012-05-05 19:19:12loewiscreate