summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-12-19 15:39:00 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2013-12-19 15:39:00 (GMT)
commit08263f10f8b9374cccf47591c3ccc64fb888d269 (patch)
tree282f80787b548ed341b77dfe1fb4c536dfe036fb /Misc/NEWS
parentcf58fb5e2947ebe6ac1e06b7f8fbe9a417b7430f (diff)
parentcb1f74ec405b81dd1319b616829dd576a48603f8 (diff)
downloadcpython-08263f10f8b9374cccf47591c3ccc64fb888d269.zip
cpython-08263f10f8b9374cccf47591c3ccc64fb888d269.tar.gz
cpython-08263f10f8b9374cccf47591c3ccc64fb888d269.tar.bz2
(Merge 3.3) Issue #20026: Fix the sqlite module to handle correctly invalid
isolation level (wrong type).
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 ad41540..1455866 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -44,6 +44,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.