diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-03-22 11:59:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-22 11:59:56 (GMT) |
commit | 3c2a7bb6b5226196f50baead9a554f900409eac4 (patch) | |
tree | a446556c3856552ed44b10b1486e0f14233002b5 | |
parent | 2e0505a1d93b62b6bca046e4b4b920a75f27bd5b (diff) | |
download | cpython-3c2a7bb6b5226196f50baead9a554f900409eac4.zip cpython-3c2a7bb6b5226196f50baead9a554f900409eac4.tar.gz cpython-3c2a7bb6b5226196f50baead9a554f900409eac4.tar.bz2 |
Docs: improve accuracy of sqlite3.Connection.interrupt() (GH-102904)
(cherry picked from commit 7b2d53daccf5a6479e179535068fd9a841db44fc)
Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
-rw-r--r-- | Doc/library/sqlite3.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index ba2ae83..051e76c 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -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) |