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.

classification
Title: sqlite3.h missing
Type: compile error Stage:
Components: None Versions: Python 3.0
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: benjamin.peterson, mendell
Priority: normal Keywords:

Created on 2009-03-20 00:07 by mendell, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg83831 - (view) Author: Matt Mendell (mendell) Date: 2009-03-20 00:07
File sqlite3.h missing from Python-3.0.1.
setup.py looks for this file.

Is this intentional?
msg83836 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2009-03-20 00:43
That's because it's trying to find the location of the sqlite3.h header
which the sqlite3 extension links to. That's part of sqlite, so it's no
included in Python.
History
Date User Action Args
2022-04-11 14:56:46adminsetgithub: 49771
2009-03-20 00:43:51benjamin.petersonsetstatus: open -> closed

nosy: + benjamin.peterson
messages: + msg83836

resolution: not a bug
2009-03-20 00:07:39mendellcreate