summaryrefslogtreecommitdiff
path: root/testlib.py
diff options
context:
space:
mode:
authorEmile Anclin <emile.anclin@logilab.fr>2010-09-13 15:09:57 +0200
committerEmile Anclin <emile.anclin@logilab.fr>2010-09-13 15:09:57 +0200
commit4ef71160c871b225078917c17f4393146838ee4b (patch)
tree4293b6ed7c0ed85aaf774d170fb045293f1a1c68 /testlib.py
parent215170f7b48fe1ad685d2c8785b4f47152ddbd15 (diff)
downloadlogilab-common-4ef71160c871b225078917c17f4393146838ee4b.tar.gz
[py3k] add callable to compat.py
import "callable" where needed. We can't use collections in python <= 2.5
Diffstat (limited to 'testlib.py')
-rw-r--r--testlib.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/testlib.py b/testlib.py
index 6cbba42..df5a3f8 100644
--- a/testlib.py
+++ b/testlib.py
@@ -78,7 +78,8 @@ except ImportError:
test_support = TestSupport()
# pylint: disable=W0622
-from logilab.common.compat import set, enumerate, any, sorted, InheritableSet
+from logilab.common.compat import (set, enumerate, any, sorted, InheritableSet,
+ callable)
# pylint: enable-msg=W0622
from logilab.common.modutils import load_module_from_name
from logilab.common.debugger import Debugger, colorize_source