diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2007-09-02 20:04:44 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2007-09-02 20:04:44 +0000 |
| commit | 41576fea7180e681a3006195d40a364bc8f78505 (patch) | |
| tree | d20fcb08fe1f09702dc1e057e14b5a7ccb16890e | |
| parent | a07c1c5aa6fe2111d4676ceecfead19710bacf02 (diff) | |
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
| -rw-r--r-- | django/db/backends/sqlite3/base.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/django/db/backends/sqlite3/base.py b/django/db/backends/sqlite3/base.py index 7919e1cc50..a482a240cf 100644 --- a/django/db/backends/sqlite3/base.py +++ b/django/db/backends/sqlite3/base.py @@ -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 |
