Re: Confused about install as sqlite2
| Newsgroups | gmane.comp.python.db.pysqlite.user |
|---|---|
| Message-ID | <[email protected]> |
Dennis> Try: block is the common method, I believe...
Dennis> try:
Dennis> import sqlite3 as db
Dennis> except ImportError:
Dennis> from pysqlite2 import dbapi2 as db
Thanks. So it was a decision by the Python dev gang to change the way it
was imported when it was incorporated into the core?
Skip