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 ncoghlan
Recipients alexandre.vassalotti, brett.cannon, ncoghlan, palm.kevin, pitrou
Date 2011-02-27.13:05:25
SpamBayes Score 8.230376e-07
Marked as misclassified No
Message-id <1298811926.66.0.516973603812.issue11321@psf.upfronthosting.co.za>
In-reply-to
Content
I can definitely confirm that one:

~/devel/py3k$ gcc -I/usr/local/include/python3.3m -o issue11321 issue11321.c -L/usr/local/lib/python3.3 -lpython3.3m -lm -lpthread -ldl -lutil -rdynamic
~/devel/py3k$ ./issue11321
START
Try import #0 ...SUCCESS
Try import #1 ...SUCCESS
Try import #2 ...SUCCESS
Try import #3 ...SUCCESS
Try import #4 ...SUCCESS
Try import #5 ...SUCCESS
Try import #6 ...SUCCESS
Try import #7 ...SUCCESS
Segmentation fault

I can also confirm that it isn't a regression w.r.t 3.1:

~/devel/py3k$ gcc -I/usr/include/python3.1 -o issue11321 issue11321.c -L/usr/lib/python3.1 -lpython3.1 -lm -lpthread -ldl -lutil -rdynamic
~/devel/py3k$ ./issue11321
START
Try import #0 ...SUCCESS
Try import #1 ...SUCCESS
Try import #2 ...SUCCESS
Try import #3 ...SUCCESS
Try import #4 ...SUCCESS
Try import #5 ...SUCCESS
Try import #6 ...SUCCESS
Try import #7 ...SUCCESS
Segmentation fault

It *is*, however, a regression from the 2.x line (where, presumably, cPickle simply never got reinitialised)
History
Date User Action Args
2011-02-27 13:05:26ncoghlansetrecipients: + ncoghlan, brett.cannon, pitrou, alexandre.vassalotti, palm.kevin
2011-02-27 13:05:26ncoghlansetmessageid: <1298811926.66.0.516973603812.issue11321@psf.upfronthosting.co.za>
2011-02-27 13:05:25ncoghlanlinkissue11321 messages
2011-02-27 13:05:25ncoghlancreate