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/operations.py | |
| parent | 18dd184ef0a490802b7c85bbf699010db7d0a628 (diff) | |
Removed obsolete references to pysqlite.
Obsolete since 1b06d5e6f6be8e567ce78c892c485af039830d7d.
Diffstat (limited to 'django/db/backends/sqlite3/operations.py')
| -rw-r--r-- | django/db/backends/sqlite3/operations.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/django/db/backends/sqlite3/operations.py b/django/db/backends/sqlite3/operations.py index 0d3a4060ac..bb84d52071 100644 --- a/django/db/backends/sqlite3/operations.py +++ b/django/db/backends/sqlite3/operations.py @@ -168,9 +168,7 @@ class DatabaseOperations(BaseDatabaseOperations): def last_executed_query(self, cursor, sql, params): # Python substitutes parameters in Modules/_sqlite/cursor.c with: - # pysqlite_statement_bind_parameters( - # self->statement, parameters, allow_8bit_chars - # ); + # bind_parameters(state, self->statement, parameters); # Unfortunately there is no way to reach self->statement from Python, # so we quote and substitute parameters manually. if params: |
