Mercurial > pylearn
changeset 922:568066b9c5a3
NoteImplementedError -> NotImplementedError
author | Arnaud Bergeron <abergeron@gmail.com> |
---|---|
date | Fri, 26 Mar 2010 14:57:35 -0400 |
parents | 3476044d7326 |
children | 06cc2b0c06ea |
files | pylearn/version.py |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/pylearn/version.py Mon Mar 22 09:55:12 2010 -0400 +++ b/pylearn/version.py Fri Mar 26 14:57:35 2010 -0400 @@ -227,15 +227,15 @@ if resource_type == _imp.PY_COMPILED: return _import_id_py_compiled(location) if resource_type == _imp.C_EXTENSION: - raise NoteImplementedError + raise NotImplementedError if resource_type == _imp.PY_RESOURCE: - raise NoteImplementedError + raise NotImplementedError if resource_type == _imp.PKG_DIRECTORY: return _import_id_pkg_directory(location) if resource_type == _imp.C_BUILTIN: - raise NoteImplementedError + raise NotImplementedError if resource_type == _imp.PY_FROZEN: - raise NoteImplementedError + raise NotImplementedError assert False #the list of resource types above should be exhaustive