summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorErlend Egeberg Aasland <erlend.aasland@protonmail.com>2022-05-02 14:14:35 (GMT)
committerGitHub <noreply@github.com>2022-05-02 14:14:35 (GMT)
commit721aa96540bb96700f8c4bab0b4095b43491dca1 (patch)
treee57e4f90905ab72a7387273d2adffd27d6356757 /Misc
parent6811bdef63d4f3af6ff901d324556cf8954575a7 (diff)
downloadcpython-721aa96540bb96700f8c4bab0b4095b43491dca1.zip
cpython-721aa96540bb96700f8c4bab0b4095b43491dca1.tar.gz
cpython-721aa96540bb96700f8c4bab0b4095b43491dca1.tar.bz2
gh-89301: Fix regression with bound values in traced SQLite statements (#92053)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2021-09-08-16-21-03.bpo-45138.yghUrK.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-09-08-16-21-03.bpo-45138.yghUrK.rst b/Misc/NEWS.d/next/Library/2021-09-08-16-21-03.bpo-45138.yghUrK.rst
new file mode 100644
index 0000000..906ed4c
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-09-08-16-21-03.bpo-45138.yghUrK.rst
@@ -0,0 +1,3 @@
+Fix a regression in the :mod:`sqlite3` trace callback where bound parameters
+were not expanded in the passed statement string. The regression was introduced
+in Python 3.10 by :issue:`40318`. Patch by Erlend E. Aasland.