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 r.david.murray
Recipients antlong, r.david.murray
Date 2010-07-24.14:22:04
SpamBayes Score 0.00024013144
Marked as misclassified No
Message-id <1279981326.32.0.191109970377.issue9365@psf.upfronthosting.co.za>
In-reply-to
Content
This is not a bug in Python.  Your link implies you are building things from scratch, so it is your responsibility to resolve the dependencies.

sqlite3 support is implemented via an extension module (compiled C code).  That extension module must be built against sqlite3.  If you don't have sqlite3 installed, the extension can't be built (which the Python build process tells you in the summary at the end).  If you later install sqlite3, there's no way the extension module to get automatically compiled.  You have to do it, as you discovered.

On systems with a package manager, the sqlite3 dependency would be automatically resolved.  Unless you told the system to build without sqlite, in which case it would again be your responsibility to reinstall python after changing your mind.
History
Date User Action Args
2010-07-24 14:22:06r.david.murraysetrecipients: + r.david.murray, antlong
2010-07-24 14:22:06r.david.murraysetmessageid: <1279981326.32.0.191109970377.issue9365@psf.upfronthosting.co.za>
2010-07-24 14:22:04r.david.murraylinkissue9365 messages
2010-07-24 14:22:04r.david.murraycreate