summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-12-19 15:38:03 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2013-12-19 15:38:03 (GMT)
commitcb1f74ec405b81dd1319b616829dd576a48603f8 (patch)
tree99573ccb27a730f4eec2cf0b6b131823668738b6 /Misc
parentcac23a50ee2979b8c2e3472e6b13efb1a8bd4f78 (diff)
downloadcpython-cb1f74ec405b81dd1319b616829dd576a48603f8.zip
cpython-cb1f74ec405b81dd1319b616829dd576a48603f8.tar.gz
cpython-cb1f74ec405b81dd1319b616829dd576a48603f8.tar.bz2
Issue #20026: Fix the sqlite module to handle correctly invalid isolation level
(wrong type).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 554f295..dec9424 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -29,6 +29,9 @@ Core and Builtins
Library
-------
+- Issue #20026: Fix the sqlite module to handle correctly invalid isolation
+ level (wrong type).
+
- Issue #18829: csv.Dialect() now checks type for delimiter, escapechar and
quotechar fields. Original patch by Vajrasky Kok.