[Pythonmac-SIG] Minimal Python 2.5 and Django install

Kent Johnson kent37 at tds.net
Wed Sep 19 21:02:32 CEST 2007


Dave Everitt wrote:

> 1. Is it embedded in Python 2.5? 

Yes, in the sqlite3 package.

> 2. Can it be tested for with:
>  >>> from pysqlite2 import test
>  >>> test.test()

No, the package is called sqlite3 and there is no umbrella test.test(). 
You can run individual tests, e.g.
In [6]: from sqlite3.test import dbapi
In [7]: dbapi.test()

Kent


More information about the Pythonmac-SIG mailing list