On 11 Nov, 2010, at 15:01, Mark Johannessen wrote:

> Is there a searchable digest for this list?  I'm looking to resolve
> the following error which seems to be tied to appscript:
> 
> Break on 
> __THE_PROCESS_HAS_FORKED_AND_YOU_CANNOT_USE_THIS_COREFOUNDATION_FUNCTIONALITY___YOU_MUST_EXEC__()
> to debug.

You started a new python process using os.fork and didn't call os.exec to start 
a new executable. Something you did initialized Apple's frameworks in the 
parent process and you then tried to use them in the child process (through 
appscript). Apple's Cocoa frameworks don't like this and in 10.6 crash the 
process with the message you mention.

Ronald

Attachment: smime.p7s
Description: S/MIME cryptographic signature

_______________________________________________
Pythonmac-SIG maillist  -  Pythonmac-SIG@python.org
http://mail.python.org/mailman/listinfo/pythonmac-sig
unsubscribe: http://mail.python.org/mailman/options/Pythonmac-SIG

Reply via email to