# HG changeset patch # User David Grundberg # Date 1246451849 -7200 # Node ID 077a44d23b54f10905052c7104c9a914f6db10cb # Parent e3de0f6f1552f629595112bab22998064c776550# Parent e9834fd34416cb479bddff181b2d839279563258 Work-around the locale problem by running temporarily in C locale. diff -r e9834fd34416 -r 077a44d23b54 test/test.py --- a/test/test.py Wed Jul 01 14:21:47 2009 +0200 +++ b/test/test.py Wed Jul 01 14:37:29 2009 +0200 @@ -187,7 +187,8 @@ testequal(["mystringåäöÅÄÖ"]) testexpect(1,Numeric.array([[1]],Numeric.Int)) -testexpect(1L,Numeric.array([[1]],Numeric.Int64)) +if "Int64" in Numeric.__dict__: + testexpect(1L,Numeric.array([[1]],Numeric.Int64)) testexpect(1.0,Numeric.array([[1]],Numeric.Float)) # Vector arrays