[Python-checkins] r43447 - in python/branches/sqlite-integration/Lib/db: sqlite sqlite/__init__.py sqlite/dbapi2.py

anthony.baxter python-checkins at python.org
Thu Mar 30 13:00:28 CEST 2006


Author: anthony.baxter
Date: Thu Mar 30 13:00:28 2006
New Revision: 43447

Modified:
   python/branches/sqlite-integration/Lib/db/   (props changed)
   python/branches/sqlite-integration/Lib/db/sqlite/   (props changed)
   python/branches/sqlite-integration/Lib/db/sqlite/__init__.py
   python/branches/sqlite-integration/Lib/db/sqlite/dbapi2.py
Log:
cleanup some bits

Modified: python/branches/sqlite-integration/Lib/db/sqlite/__init__.py
==============================================================================
--- python/branches/sqlite-integration/Lib/db/sqlite/__init__.py	(original)
+++ python/branches/sqlite-integration/Lib/db/sqlite/__init__.py	Thu Mar 30 13:00:28 2006
@@ -21,3 +21,4 @@
 #    misrepresented as being the original software.
 # 3. This notice may not be removed or altered from any source distribution.
 
+from dbapi2 import *

Modified: python/branches/sqlite-integration/Lib/db/sqlite/dbapi2.py
==============================================================================
--- python/branches/sqlite-integration/Lib/db/sqlite/dbapi2.py	(original)
+++ python/branches/sqlite-integration/Lib/db/sqlite/dbapi2.py	Thu Mar 30 13:00:28 2006
@@ -29,7 +29,7 @@
 
 apilevel = "2.0"
 
-from pysqlite2._sqlite import *
+from _sqlite import *
 
 import datetime, time
 


More information about the Python-checkins mailing list