2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-24 06:02:14 +00:00

Use Numeric.ArrayType in preference to numarray.NDArray in accordance

with the documentation.


[SVN r23321]
This commit is contained in:
Jonathan Brandmeyer
2004-07-03 04:55:54 +00:00
parent 486fff38c2
commit 78344bf0b8

View File

@@ -40,12 +40,12 @@ namespace
{
if (module_name.size() == 0)
{
module_name = "numarray";
type_name = "NDArray";
if (load(false))
return true;
module_name = "Numeric";
type_name = "ArrayType";
if (load(false))
return true;
module_name = "numarray";
type_name = "NDArray";
}
state = failed;