Garen Parham <[email protected]> added the comment: FWIW:
C:\views\dev\pypy\pypy-2.0.2>.\pypy.exe Python 2.7.3 (00a6764b871b, May 20 2013, 14:15:12) [PyPy 2.0.2 with MSC v.1500 32 bit] on win32 Type "help", "copyright", "credits" or "license" for more information. And now for something completely different: ``it's Sunday, maybe'' >>>> import sqlite3 >>>> sqlite3.sqlite_version '3.5.9' C:\views\dev\pypy\pypy-2.1-beta-win32>pypy.exe Python 2.7.3 (daf1b0412bfb, Jul 11 2013, 05:57:43) [PyPy 2.1.0-beta1 with MSC v.1500 32 bit] on win32 Type "help", "copyright", "credits" or "license" for more information. And now for something completely different: ``samuele says that we lost a razor. so we can't shave yaks'' >>>> import sqlite3 >>>> sqlite3.sqlite_version '3.5.9' garepa@swslinux1:~/dev/pypy-2.1-beta-linux64/bin$ ./pypy Python 2.7.3 (daf1b0412bfb, Jul 10 2013, 15:23:15) [PyPy 2.1.0-beta1 with GCC 4.6.3] on linux2 Type "help", "copyright", "credits" or "license" for more information. And now for something completely different: ``I am a big believer in reasons. but the apparent kind are my favorite.'' >>>> import sqlite3 >>>> sqlite3.sqlite_version '3.7.9' So the win32 version of pypy is picking up an old version of sqlite (3.5.9) as suspected. Note that CPython 2.7.3 and 2.7.5 reports '3.6.21': C:\Python\x86\pyorg\2.7.3>.\python.exe Python 2.7.3 (default, Apr 10 2012, 23:31:26) [MSC v.1500 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> import sqlite3 >>> sqlite3.sqlite_version '3.6.21' C:\Python\x86\pyorg\2.7.5>.\python.exe Python 2.7.5 (default, May 15 2013, 22:43:36) [MSC v.1500 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> import sqlite3 >>> sqlite3.sqlite_version '3.6.21' Quite a smorgasbord of inconsistency. ---------- nosy: +Garen release: -> 2.1 status: unread -> chatting ________________________________________ PyPy bug tracker <[email protected]> <https://bugs.pypy.org/issue1441> ________________________________________ _______________________________________________ pypy-issue mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-issue
