summaryrefslogtreecommitdiff
path: root/table.py
diff options
context:
space:
mode:
authorEmile Anclin <emile.anclin@logilab.fr>2010-10-06 12:39:20 +0200
committerEmile Anclin <emile.anclin@logilab.fr>2010-10-06 12:39:20 +0200
commit885ead94dc7fb402137f86b2ed0200db94ae0215 (patch)
tree6ba9c37fd438eb824dc5a91527537d193b8c3841 /table.py
parent3a830854f0b538e918524d3b28c9f881b2422793 (diff)
downloadlogilab-common-885ead94dc7fb402137f86b2ed0200db94ae0215.tar.gz
remove py2.2 compat ; use deprecation warnings
Diffstat (limited to 'table.py')
-rw-r--r--table.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/table.py b/table.py
index 8efe911..f8bbad4 100644
--- a/table.py
+++ b/table.py
@@ -18,7 +18,7 @@
"""Table management module."""
__docformat__ = "restructuredtext en"
-from logilab.common.compat import enumerate, sum, set
+from logilab.common.compat import set
class Table(object):
"""Table defines a data table with column and row names.