summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorErlend Egeberg Aasland <erlend.aasland@innova.no>2022-03-09 17:39:49 (GMT)
committerGitHub <noreply@github.com>2022-03-09 17:39:49 (GMT)
commite801e88744f34508aa338f9f7f3f3baee012f813 (patch)
treeab80307352392818e19b52f609f4436f3ac238d8 /Doc
parent23dcea5de736b367c0244042aaca10971538b2b4 (diff)
downloadcpython-e801e88744f34508aa338f9f7f3f3baee012f813.zip
cpython-e801e88744f34508aa338f9f7f3f3baee012f813.tar.gz
cpython-e801e88744f34508aa338f9f7f3f3baee012f813.tar.bz2
bpo-45138: Revert GH-28240: Expand traced SQL statements (GH-31788)
This reverts commit d1777515f9f53b452a4231d68196a7c0e5deb879. Automerge-Triggered-By: GH:JelleZijlstra
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/sqlite3.rst6
-rw-r--r--Doc/whatsnew/3.11.rst4
2 files changed, 0 insertions, 10 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst
index 296b188..c456905 100644
--- a/Doc/library/sqlite3.rst
+++ b/Doc/library/sqlite3.rst
@@ -560,9 +560,6 @@ Connection Objects
Passing :const:`None` as *trace_callback* will disable the trace callback.
- For SQLite 3.14.0 and newer, bound parameters are expanded in the passed
- statement string.
-
.. note::
Exceptions raised in the trace callback are not propagated. As a
development and debugging aid, use
@@ -571,9 +568,6 @@ Connection Objects
.. versionadded:: 3.3
- .. versionchanged:: 3.11
- Added support for expanded SQL statements.
-
.. method:: enable_load_extension(enabled)
diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst
index 628d4c0..4514de9 100644
--- a/Doc/whatsnew/3.11.rst
+++ b/Doc/whatsnew/3.11.rst
@@ -334,10 +334,6 @@ sqlite3
Instead we leave it to the SQLite library to handle these cases.
(Contributed by Erlend E. Aasland in :issue:`44092`.)
-* For SQLite 3.14.0 and newer, bound parameters are expanded in the statement
- string passed to the trace callback. See :meth:`~sqlite3.Connection.set_trace_callback`.
- (Contributed by Erlend E. Aasland in :issue:`45138`.)
-
sys
---