Docs: improve accuracy of sqlite3.Connection.interrupt() (GH-102904)

(cherry picked from commit 7b2d53dacc)

Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
This commit is contained in:
Miss Islington (bot) 2023-03-22 04:59:56 -07:00 committed by GitHub
parent 2e0505a1d9
commit 3c2a7bb6b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -700,7 +700,7 @@ Connection objects
Call this method from a different thread to abort any queries that might
be executing on the connection.
Aborted queries will raise an exception.
Aborted queries will raise an :exc:`OperationalError`.
.. method:: set_authorizer(authorizer_callback)