summaryrefslogtreecommitdiffstats
path: root/Doc/library/sqlite3.rst
diff options
context:
space:
mode:
authorErlend E. Aasland <erlend.aasland@protonmail.com>2023-03-22 11:50:00 (GMT)
committerGitHub <noreply@github.com>2023-03-22 11:50:00 (GMT)
commit7b2d53daccf5a6479e179535068fd9a841db44fc (patch)
tree28913cc560792f5ac83195caa6d452efc639efc0 /Doc/library/sqlite3.rst
parentc74073657e32b8872f91b3bbe1efa9af20adbea9 (diff)
downloadcpython-7b2d53daccf5a6479e179535068fd9a841db44fc.zip
cpython-7b2d53daccf5a6479e179535068fd9a841db44fc.tar.gz
cpython-7b2d53daccf5a6479e179535068fd9a841db44fc.tar.bz2
Docs: improve accuracy of sqlite3.Connection.interrupt() (#102904)
Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
Diffstat (limited to 'Doc/library/sqlite3.rst')
-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 a78f3eb..4b2d13a 100644
--- a/Doc/library/sqlite3.rst
+++ b/Doc/library/sqlite3.rst
@@ -911,7 +911,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)