summaryrefslogtreecommitdiff
path: root/test/testlib/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/testlib/__init__.py')
-rw-r--r--test/testlib/__init__.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/testlib/__init__.py b/test/testlib/__init__.py
index d7daaddf8..46852191a 100644
--- a/test/testlib/__init__.py
+++ b/test/testlib/__init__.py
@@ -11,6 +11,7 @@ from testlib.testing import rowset
from testlib.testing import PersistTest, AssertMixin, ORMTest, SQLCompileTest
import testlib.profiling as profiling
import testlib.engines as engines
+from testlib.compat import set, sorted, _function_named
__all__ = ('testing',
@@ -18,4 +19,5 @@ __all__ = ('testing',
'Table', 'Column',
'rowset',
'PersistTest', 'AssertMixin', 'ORMTest', 'SQLCompileTest',
- 'profiling', 'engines')
+ 'profiling', 'engines',
+ 'set', 'sorted', '_function_named')