Ticket #5263: sqlitedocstring.diff
File sqlitedocstring.diff, 596 bytes (added by , 17 years ago) |
---|
-
django/db/backends/sqlite3/base.py
1 1 """ 2 SQLite3 backend for django. Requires pysqlite2 (http://pysqlite.org/). 2 SQLite3 backend for django. 3 4 Python 2.3 and 2.4 also require pysqlite2 (http://pysqlite.org/). 5 6 Python 2.5 and later use the sqlite3 module in the standard library. 3 7 """ 4 8 5 9 from django.db.backends import BaseDatabaseWrapper, BaseDatabaseFeatures, BaseDatabaseOperations, util