Mark Bucciarelli <[email protected]> added the comment: BAD : sqlite3.sqlite_version_info = (3, 6, 12) GOOD: sqlite3.sqlite_version_info = (3, 7, 4) GOOD: sqlite3.sqlite_version_info = (3, 7, 8)
I guess this is the cause of the different behavior. sqlite_version_info is the version of the underlying sqlite3 database library. So, the sqlite3 is loading an older dynamic lib on my OSX. ---------- _______________________________________ Python tracker <[email protected]> <http://bugs.python.org/issue12997> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
