Changeset 6035
- Timestamp:
- 09/02/07 15:04:44 (1 year ago)
- Files:
-
- django/trunk/django/db/backends/sqlite3/base.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/db/backends/sqlite3/base.py
r5982 r6035 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 require pysqlite2 (http://pysqlite.org/). 5 6 Python 2.5 and later use the sqlite3 module in the standard library. 3 7 """ 4 8
