From fe7d0c3bc6352bbabd4b458bf736cd18e9082a27 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Thu, 15 Jun 2006 04:54:29 +0000 Subject: Speculative checkin (requires approval of Gerhard Haering) This backs out the test changes in 46962 which prevented crashes by not running the tests via a version check. All the version checks added in that rev were removed from the tests. Code was added to the error handler in connection.c that seems to work with older versions of sqlite including 3.1.3. --- Lib/sqlite3/test/hooks.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'Lib/sqlite3/test/hooks.py') diff --git a/Lib/sqlite3/test/hooks.py b/Lib/sqlite3/test/hooks.py index 7deab983f8..b10b3efb17 100644 --- a/Lib/sqlite3/test/hooks.py +++ b/Lib/sqlite3/test/hooks.py @@ -48,8 +48,6 @@ class CollationTests(unittest.TestCase): pass def CheckCollationIsUsed(self): - if sqlite.version_info < (3, 2, 1): # old SQLite versions crash on this test - return def mycoll(x, y): # reverse order return -cmp(x, y) -- cgit v1.2.1