summaryrefslogtreecommitdiff
path: root/Lib/sqlite3
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-12-19 16:39:00 +0100
committerVictor Stinner <victor.stinner@gmail.com>2013-12-19 16:39:00 +0100
commit08263f10f8b9374cccf47591c3ccc64fb888d269 (patch)
tree282f80787b548ed341b77dfe1fb4c536dfe036fb /Lib/sqlite3
parentcf58fb5e2947ebe6ac1e06b7f8fbe9a417b7430f (diff)
parentcb1f74ec405b81dd1319b616829dd576a48603f8 (diff)
downloadcpython-git-08263f10f8b9374cccf47591c3ccc64fb888d269.tar.gz
(Merge 3.3) Issue #20026: Fix the sqlite module to handle correctly invalid
isolation level (wrong type).
Diffstat (limited to 'Lib/sqlite3')
-rw-r--r--Lib/sqlite3/test/regression.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/sqlite3/test/regression.py b/Lib/sqlite3/test/regression.py
index b927cb3ed1..c557ab6785 100644
--- a/Lib/sqlite3/test/regression.py
+++ b/Lib/sqlite3/test/regression.py
@@ -330,6 +330,11 @@ class RegressionTests(unittest.TestCase):
datetime.datetime(2012, 4, 4, 15, 6, 0, 123456),
])
+ def CheckInvalidIsolationLevelType(self):
+ # isolation level is a string, not an integer
+ self.assertRaises(TypeError,
+ sqlite.connect, ":memory:", isolation_level=123)
+
def suite():
regression_suite = unittest.makeSuite(RegressionTests, "Check")