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 zpcz
Recipients
Date 2007-05-16.19:38:54
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
r = '''
a(b(c[d]))
'''
from threading import Thread
from compiler import parse
Thread(target = parse, args = (r,)).start()

leads to 
Bus error (core dumped)

When runs not in thread everything is OK.
OS FreeBSD 5.4.
Python 2.5.1 (seems that 2.5 also has this error)
(Runs perfectly on Linux, and on FreeBSD with Python 2.4)
History
Date User Action Args
2007-08-23 14:53:43adminlinkissue1720241 messages
2007-08-23 14:53:43admincreate