hello,

I found that if I use Numeric.array into unittest it is not
consistance,
Is that normal ?

 
import unittest
import Numeric
class 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 ???

Any idea?

Sincerely Yours,
pujo

_______________________________________________
Tutor maillist  -  [email protected]
http://mail.python.org/mailman/listinfo/tutor

Reply via email to