Oh, I forgot this. When I debuged with
#undef HAVE_LONG_LONG
I noticed test_sqlite.py failed with this error message.
======================================================================
ERROR: CheckLargeInt (sqlite3.test.types.SqliteTypeTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "e:\python-dev\py3k\lib\sqlite3\test\types.py", line 52, in
CheckLargeInt
self.cur.execute("insert into test(i) values (?)", (num,))
OverflowError: Python int too large to convert to C long
======================================================================
ERROR: CheckLargeInt (sqlite3.test.types.DeclTypesTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "e:\python-dev\py3k\lib\sqlite3\test\types.py", line 146, in
CheckLargeIn
t
self.cur.execute("insert into test(i) values (?)", (num,))
OverflowError: Python int too large to convert to C long
Maybe some fix for test is needed?