summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2018-09-20 11:10:49 (GMT)
committerGitHub <noreply@github.com>2018-09-20 11:10:49 (GMT)
commit8d1e190fc507a9e304f6817e761e9f628a23cbd8 (patch)
tree27ac322d66fa2c6551368f87694d5055790f1144 /Misc
parentffef50f1f5907e5f0f175b12088d3e509011f126 (diff)
downloadcpython-8d1e190fc507a9e304f6817e761e9f628a23cbd8.zip
cpython-8d1e190fc507a9e304f6817e761e9f628a23cbd8.tar.gz
cpython-8d1e190fc507a9e304f6817e761e9f628a23cbd8.tar.bz2
bpo-32215: Fix performance regression in sqlite3 (GH-8511)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-07-28-12-08-53.bpo-32215.EU68SY.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-07-28-12-08-53.bpo-32215.EU68SY.rst b/Misc/NEWS.d/next/Library/2018-07-28-12-08-53.bpo-32215.EU68SY.rst
new file mode 100644
index 0000000..c097cf7
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-07-28-12-08-53.bpo-32215.EU68SY.rst
@@ -0,0 +1,2 @@
+Fix performance regression in :mod:`sqlite3` when a DML statement appeared
+in a different line than the rest of the SQL query.