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 ned.deily
Recipients ned.deily, suzhengchun
Date 2012-06-15.02:38:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1339727891.7.0.383332033076.issue15066@psf.upfronthosting.co.za>
In-reply-to
Content
I have no experience with opensuse but, from a general unix install install view, the most obvious cause of that message would be a build failure of the _struct extension.  Check the log file for messages with _struct in it.  You could also try to check the paths and to import it in the build directory:

PYTHONPATH=/WORK/suzc/installed/python/lib/python2.7 \
 ./python -c 'import sys; print(sys.paths)'
PYTHONPATH=/WORK/suzc/installed/python/lib/python2.7 \
 ./python -c 'import _struct; print(_struct.__file__)'
History
Date User Action Args
2012-06-15 02:38:11ned.deilysetrecipients: + ned.deily, suzhengchun
2012-06-15 02:38:11ned.deilysetmessageid: <1339727891.7.0.383332033076.issue15066@psf.upfronthosting.co.za>
2012-06-15 02:38:11ned.deilylinkissue15066 messages
2012-06-15 02:38:10ned.deilycreate