diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-06-14 13:25:35 +0300 |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-06-14 13:25:35 +0300 |
commit | 7fb468bf3e284c1b9609c98af0401ce3cda20064 (patch) | |
tree | bd17d14b2eca1ed1515aa0d5de3774b847e77c2a /Lib/sqlite3/test | |
parent | 4762d5d5d1d5d5f2ddd113ff92e4e342a7e47a90 (diff) | |
parent | 2b50899a28c6fa860f4654224dbdf60c47c72821 (diff) | |
download | cpython-git-7fb468bf3e284c1b9609c98af0401ce3cda20064.tar.gz |
Merge from 3.5
Diffstat (limited to 'Lib/sqlite3/test')
-rw-r--r-- | Lib/sqlite3/test/dbapi.py | 12 | ||||
-rw-r--r-- | Lib/sqlite3/test/hooks.py | 6 |
2 files changed, 0 insertions, 18 deletions
diff --git a/Lib/sqlite3/test/dbapi.py b/Lib/sqlite3/test/dbapi.py index 903e599031..d9c32282a5 100644 --- a/Lib/sqlite3/test/dbapi.py +++ b/Lib/sqlite3/test/dbapi.py @@ -695,12 +695,6 @@ class ExtensionTests(unittest.TestCase): self.assertEqual(result, 5, "Basic test of Connection.executescript") class ClosedConTests(unittest.TestCase): - def setUp(self): - pass - - def tearDown(self): - pass - def CheckClosedConCursor(self): con = sqlite.connect(":memory:") con.close() @@ -768,12 +762,6 @@ class ClosedConTests(unittest.TestCase): con() class ClosedCurTests(unittest.TestCase): - def setUp(self): - pass - - def tearDown(self): - pass - def CheckClosed(self): con = sqlite.connect(":memory:") cur = con.cursor() diff --git a/Lib/sqlite3/test/hooks.py b/Lib/sqlite3/test/hooks.py index de69569d1c..cafff932b4 100644 --- a/Lib/sqlite3/test/hooks.py +++ b/Lib/sqlite3/test/hooks.py @@ -25,12 +25,6 @@ import unittest import sqlite3 as sqlite class CollationTests(unittest.TestCase): - def setUp(self): - pass - - def tearDown(self): - pass - def CheckCreateCollationNotCallable(self): con = sqlite.connect(":memory:") with self.assertRaises(TypeError) as cm: |