summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-03-22 11:59:56 (GMT)
committerGitHub <noreply@github.com>2023-03-22 11:59:56 (GMT)
commit3c2a7bb6b5226196f50baead9a554f900409eac4 (patch)
treea446556c3856552ed44b10b1486e0f14233002b5
parent2e0505a1d93b62b6bca046e4b4b920a75f27bd5b (diff)
downloadcpython-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.rst2
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)