diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-01-11 01:18:21 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-01-11 01:18:21 (GMT) |
commit | 3f7beb99dd456dd2b8de45a5cb0e1afdf228a262 (patch) | |
tree | 4b241c94931ae1509180fd8c0c6b9635283f23ae /Lib/sqlite3 | |
parent | b52312923bee35b86fc072ec546cc3e588ae64c9 (diff) | |
download | cpython-3f7beb99dd456dd2b8de45a5cb0e1afdf228a262.zip cpython-3f7beb99dd456dd2b8de45a5cb0e1afdf228a262.tar.gz cpython-3f7beb99dd456dd2b8de45a5cb0e1afdf228a262.tar.bz2 |
#13934: document sqlite version strings, use correct one in test.
Diffstat (limited to 'Lib/sqlite3')
-rw-r--r-- | Lib/sqlite3/test/hooks.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/sqlite3/test/hooks.py b/Lib/sqlite3/test/hooks.py index a92e838..0ec3b43 100644 --- a/Lib/sqlite3/test/hooks.py +++ b/Lib/sqlite3/test/hooks.py @@ -47,9 +47,9 @@ class CollationTests(unittest.TestCase): except sqlite.ProgrammingError as e: pass + @unittest.skipIf(sqlite.sqlite_version_info < (3, 2, 1), + 'old SQLite versions crash on this test') 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 -((x > y) - (x < y)) |