summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-06-12 11:09:51 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2016-06-12 11:09:51 (GMT)
commit7bea2347c7e8af2c6b59e541c4039c34c7a8f6b2 (patch)
tree43b082adfa798c7ba87552edbdca905bd8f8c3a2 /Misc/NEWS
parentc415440faa67c488fd2a5d8fc0977cbd660c4a90 (diff)
downloadcpython-7bea2347c7e8af2c6b59e541c4039c34c7a8f6b2.zip
cpython-7bea2347c7e8af2c6b59e541c4039c34c7a8f6b2.tar.gz
cpython-7bea2347c7e8af2c6b59e541c4039c34c7a8f6b2.tar.bz2
Issue #27190: Raise NotSupportedError if sqlite3 is older than 3.3.1
Patch by Dave Sawyer.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3189824..3e374f8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Release date: tba
Core and Builtins
-----------------
+- Issue #27190: Raise NotSupportedError if sqlite3 is older than 3.3.1.
+ Patch by Dave Sawyer.
+
- Issue #27286: Fixed compiling BUILD_MAP_UNPACK_WITH_CALL opcode. Calling
function with generalized unpacking (PEP 448) and conflicting keyword names
could cause undefined behavior.