Mercurial > ift6266
comparison transformations/testmod.py @ 72:af2f9252dd14
forgot to import sys in testmod
author | Arnaud Bergeron <abergeron@gmail.com> |
---|---|
date | Wed, 10 Feb 2010 11:34:32 -0500 |
parents | 22823acc1712 |
children |
comparison
equal
deleted
inserted
replaced
71:22823acc1712 | 72:af2f9252dd14 |
---|---|
1 # This script is to test your modules to see if they conform to the module API | 1 # This script is to test your modules to see if they conform to the module API |
2 # defined on the wiki. | 2 # defined on the wiki. |
3 import random, numpy, gc, time, math | 3 import random, numpy, gc, time, math, sys |
4 | 4 |
5 # this is an example module that does stupid image value shifting | 5 # this is an example module that does stupid image value shifting |
6 | 6 |
7 class DummyModule(object): | 7 class DummyModule(object): |
8 def get_settings_names(self): | 8 def get_settings_names(self): |