diff options
| author | Nick Pope <nick@nickpope.me.uk> | 2022-11-03 21:46:07 +0000 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-11-04 08:03:06 +0100 |
| commit | 0f4964535cb81c12303dd103c4bdba4891c99c2c (patch) | |
| tree | 550568c683ce0e136cda4a2a474310ef50e2415d /django/db/backends/sqlite3/base.py | |
| parent | 18dd184ef0a490802b7c85bbf699010db7d0a628 (diff) | |
Removed obsolete references to pysqlite.
Obsolete since 1b06d5e6f6be8e567ce78c892c485af039830d7d.
Diffstat (limited to 'django/db/backends/sqlite3/base.py')
| -rw-r--r-- | django/db/backends/sqlite3/base.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/db/backends/sqlite3/base.py b/django/db/backends/sqlite3/base.py index feae360567..e541a6cbb0 100644 --- a/django/db/backends/sqlite3/base.py +++ b/django/db/backends/sqlite3/base.py @@ -158,7 +158,7 @@ class DatabaseWrapper(BaseDatabaseWrapper): # between multiple threads. The safe-guarding will be handled at a # higher level by the `BaseDatabaseWrapper.allow_thread_sharing` # property. This is necessary as the shareability is disabled by - # default in pysqlite and it cannot be changed once a connection is + # default in sqlite3 and it cannot be changed once a connection is # opened. if "check_same_thread" in kwargs and kwargs["check_same_thread"]: warnings.warn( @@ -357,7 +357,7 @@ FORMAT_QMARK_REGEX = _lazy_re_compile(r"(?<!%)%s") class SQLiteCursorWrapper(Database.Cursor): """ - Django uses "format" style placeholders, but pysqlite2 uses "qmark" style. + Django uses "format" style placeholders, but sqlite3 uses "qmark" style. This fixes it -- but note that if you want to use a literal "%s" in a query, you'll need to use "%%s". """ |
