Ticket #5263: sqlitedocstring.diff

File sqlitedocstring.diff, 596 bytes (added by Paul Bx <pb@…>, 17 years ago)
  • django/db/backends/sqlite3/base.py

     
    11"""
    2 SQLite3 backend for django.  Requires pysqlite2 (http://pysqlite.org/).
     2SQLite3 backend for django. 
     3
     4Python 2.3 and 2.4 also require pysqlite2 (http://pysqlite.org/).
     5
     6Python 2.5 and later use the sqlite3 module in the standard library.
    37"""
    48
    59from django.db.backends import BaseDatabaseWrapper, BaseDatabaseFeatures, BaseDatabaseOperations, util
Back to Top