Mercurial > pylearn
comparison dataset.py @ 166:ee11ed427ba8
Created exceptions.py
author | Joseph Turian <turian@gmail.com> |
---|---|
date | Mon, 12 May 2008 18:40:17 -0400 |
parents | d7d67651d67c |
children | 4803cb76e26b |
comparison
equal
deleted
inserted
replaced
165:2a12e7437c56 | 166:ee11ed427ba8 |
---|---|
4 from misc import unique_elements_list_intersection | 4 from misc import unique_elements_list_intersection |
5 from string import join | 5 from string import join |
6 from sys import maxint | 6 from sys import maxint |
7 import numpy | 7 import numpy |
8 | 8 |
9 class AbstractFunction (Exception): """Derived class must override this function""" | 9 from exceptions import * |
10 class NotImplementedYet (NotImplementedError): """Work in progress, this should eventually be implemented""" | |
11 | 10 |
12 class AttributesHolder(object): | 11 class AttributesHolder(object): |
13 def __init__(self): pass | 12 def __init__(self): pass |
14 | 13 |
15 def attributeNames(self): | 14 def attributeNames(self): |