Author ronaldoussoren
Recipients brett.cannon, kakacek, ned.deily, ronaldoussoren
Date 2009-10-11.18:09:36
SpamBayes Score 3.21845e-06
Marked as misclassified No
Message-id <1255284577.67.0.167048707066.issue7085@psf.upfronthosting.co.za>
In-reply-to
Content
The crash happens whenever you import code on a secondairy thread.

I consider this a platform bug in the implementation of dlopen, because 
the crash also occurs with this variant on test():

def test():
    print "DL"
    p = os.path.join(os.path.dirname(time.__file__), '_locale.so')
    m = dl.open(p)
    print m

(Don't forget to import dl and os before running the code).

I'm investigating a workaround.
History
Date User Action Args
2009-10-11 18:09:38ronaldoussorensetrecipients: + ronaldoussoren, brett.cannon, kakacek, ned.deily
2009-10-11 18:09:37ronaldoussorensetmessageid: <1255284577.67.0.167048707066.issue7085@psf.upfronthosting.co.za>
2009-10-11 18:09:36ronaldoussorenlinkissue7085 messages
2009-10-11 18:09:36ronaldoussorencreate