ENH: Adds repr for datasets

This commit is contained in:
llllllllll
2015-10-19 16:35:02 -04:00
parent 4d7d5ce8ff
commit 4c98c947fb
+3
View File
@@ -115,6 +115,9 @@ class DataSetMeta(type):
def __lt__(self, other):
return id(self) < id(other)
def __repr__(self):
return '<DataSet: %r>' % self.__name__
class DataSet(with_metaclass(DataSetMeta)):
domain = None