summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2017-09-20 14:36:18 (GMT)
committerGitHub <noreply@github.com>2017-09-20 14:36:18 (GMT)
commit525269430a3f9fbb7287e4bb6b365ac216004980 (patch)
tree2d773b5d8ee8582da1b90bcbd17bb3ffc9ce25f7 /Misc
parent0ad05c32cc41d4c21bfd78b9ffead519ead475a2 (diff)
downloadcpython-525269430a3f9fbb7287e4bb6b365ac216004980.zip
cpython-525269430a3f9fbb7287e4bb6b365ac216004980.tar.gz
cpython-525269430a3f9fbb7287e4bb6b365ac216004980.tar.bz2
closes bpo-31525: require sqlite3_prepare_v2 (#3666)
This is based on https://github.com/ghaering/pysqlite/commit/40b349cadbd87c42f70fc92e5e1aee6d02564c6d#diff-0489411409cd2934730e88bf7767790, though we can be a bit more aggressive about deleting code.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2017-09-19-18-48-21.bpo-31525.O2TIL2.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-09-19-18-48-21.bpo-31525.O2TIL2.rst b/Misc/NEWS.d/next/Library/2017-09-19-18-48-21.bpo-31525.O2TIL2.rst
new file mode 100644
index 0000000..7f09e57
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2017-09-19-18-48-21.bpo-31525.O2TIL2.rst
@@ -0,0 +1 @@
+In the sqlite module, require the sqlite3_prepare_v2 API. Thus, the sqlite module now requires sqlite version at least 3.3.9.