Fixed #5263 -- Updated docstring for sqlite3 backend. Thanks, Paul Bx

git-svn-id: http://code.djangoproject.com/svn/django/trunk@6035 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2007-09-02 20:04:44 +00:00
parent a07c1c5aa6
commit 41576fea71
1 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,9 @@
"""
SQLite3 backend for django. Requires pysqlite2 (http://pysqlite.org/).
SQLite3 backend for django.
Python 2.3 and 2.4 require pysqlite2 (http://pysqlite.org/).
Python 2.5 and later use the sqlite3 module in the standard library.
"""
from django.db.backends import BaseDatabaseWrapper, BaseDatabaseFeatures, BaseDatabaseOperations, util