diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-12-19 15:38:03 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-12-19 15:38:03 (GMT) |
commit | cb1f74ec405b81dd1319b616829dd576a48603f8 (patch) | |
tree | 99573ccb27a730f4eec2cf0b6b131823668738b6 /Misc | |
parent | cac23a50ee2979b8c2e3472e6b13efb1a8bd4f78 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |