From 4be99db15b7a62b37493c86da07bcc787f44a7df Mon Sep 17 00:00:00 2001 From: Jason Kirtland Date: Sat, 19 Jan 2008 23:37:11 +0000 Subject: - Restored 2.3 compat. in lib/sqlalchemy - Part one of test suite fixes to run on 2.3 Lots of failures still around sets; sets.Set differs from __builtin__.set particularly in the binops. We depend on set extensively now and may need to provide a corrected sets.Set subclass on 2.3. --- test/base/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/base/utils.py') diff --git a/test/base/utils.py b/test/base/utils.py index 5ebc33921..61e2b95a8 100644 --- a/test/base/utils.py +++ b/test/base/utils.py @@ -2,7 +2,7 @@ import testenv; testenv.configure_for_tests() import unittest from sqlalchemy import util, sql, exceptions from testlib import * - +from testlib import sorted class OrderedDictTest(PersistTest): def test_odict(self): -- cgit v1.2.1