Comment #1 on issue 43 by zerbie: twill-fork crashing python on leopard
http://code.google.com/p/twill/issues/detail?id=43
just reproduced this locally; we probably want to fix this sooner rather
than later.
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
Comment #2 on issue 43 by the.good.doctor.is.in: twill-fork crashing python
on leopard
http://code.google.com/p/twill/issues/detail?id=43
This is a mechanize bug; to reproduce, try:
import sys
import os
from _mechanize_dist import Browser
if os.fork() == 0:
b = Browser()
sys.exit(0)
No good idea of what the specific issue is; see
http://developer.apple.com/technotes/tn2005/tn2083.html#SECDAEMONVSFRAMEWORKS
for the general problem. mechanize must be using CoreFoundation somewhere!?