Django

Code

Changeset 6035

Show
Ignore:
Timestamp:
09/02/07 15:04:44 (1 year ago)
Author:
adrian
Message:

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

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/db/backends/sqlite3/base.py

    r5982 r6035  
    11""" 
    2 SQLite3 backend for django.  Requires pysqlite2 (http://pysqlite.org/). 
     2SQLite3 backend for django. 
     3 
     4Python 2.3 and 2.4 require pysqlite2 (http://pysqlite.org/). 
     5 
     6Python 2.5 and later use the sqlite3 module in the standard library. 
    37""" 
    48