Mercurial > ift6266
changeset 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 | 859ebd7f8754 |
files | transformations/testmod.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/transformations/testmod.py Wed Feb 10 11:23:30 2010 -0500 +++ b/transformations/testmod.py Wed Feb 10 11:34:32 2010 -0500 @@ -1,6 +1,6 @@ # This script is to test your modules to see if they conform to the module API # defined on the wiki. -import random, numpy, gc, time, math +import random, numpy, gc, time, math, sys # this is an example module that does stupid image value shifting