hello, I found that if I use Numeric.array into unittest it is not Any idea? Sincerely Yours,
consistance,
Is that normal ?
import unittest
import Numericclass myTest(unittest.TestCase):
def runTest(self):
var1 = Numeric.array([1,22])
var2 = Numeric.array([1,33])
self.assertEqual(var1,var2)
if __name__ == '__main__':
unittest.main()
This will not raise any error ???
pujo
_______________________________________________ Tutor maillist - [email protected] http://mail.python.org/mailman/listinfo/tutor
