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:
parent
a07c1c5aa6
commit
41576fea71
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue