mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
Issue #17857: Prevent build failures with pre-3.5.0 versions of sqlite3,
such as was shipped with Centos 5 and Mac OS X 10.4.
This commit is contained in:
parent
4067aa272e
commit
d160b12292
4 changed files with 10 additions and 7 deletions
|
|
@ -36,7 +36,7 @@ int pysqlite_step(sqlite3_stmt* statement, pysqlite_Connection* connection);
|
|||
*/
|
||||
int _pysqlite_seterror(sqlite3* db, sqlite3_stmt* st);
|
||||
|
||||
PyObject * _pysqlite_long_from_int64(sqlite3_int64 value);
|
||||
sqlite3_int64 _pysqlite_long_as_int64(PyObject * value);
|
||||
PyObject * _pysqlite_long_from_int64(sqlite_int64 value);
|
||||
sqlite_int64 _pysqlite_long_as_int64(PyObject * value);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue