commit | 9450219b0692c9e56ddcd0dc130c995b98f9550f | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@gmail.com> | Thu Dec 19 16:44:48 2013 +0100 |
committer | Victor Stinner <victor.stinner@gmail.com> | Thu Dec 19 16:44:48 2013 +0100 |
tree | 3c7183536c870ecbb538e4162e11c950127129a7 | |
parent | 0c221beed470cf5c08d8fc7fd099f5f97c801606 [diff] [blame] |
Issue #20026: Fix the sqlite module to handle correctly invalid isolation level (wrong type).
diff --git a/Misc/NEWS b/Misc/NEWS index 35da6ab..9c9233c 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -27,6 +27,9 @@ 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.