[pypy-svn] r73031 - pypy/pysqlite2

arigo at codespeak.net arigo at codespeak.net
Sun Mar 28 17:31:06 CEST 2010


Author: arigo
Date: Sun Mar 28 17:31:05 2010
New Revision: 73031

Modified:
   pypy/pysqlite2/dbapi2.py
Log:
Revert r73030.  I agree with fijal, it makes little sense.
Probably a bug of the system where I am.


Modified: pypy/pysqlite2/dbapi2.py
==============================================================================
--- pypy/pysqlite2/dbapi2.py	(original)
+++ pypy/pysqlite2/dbapi2.py	Sun Mar 28 17:31:05 2010
@@ -33,7 +33,7 @@
 paramstyle = "qmark"
 threadsafety = 1
 
-names = "sqlite3.dll libsqlite3.so libsqlite3.dylib libsqlite3.so.0".split()
+names = "sqlite3.dll libsqlite3.so libsqlite3.dylib".split()
 for name in names: 
     try:
         sqlite = cdll.LoadLibrary(name) 



More information about the Pypy-commit mailing list