2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-21 17:12:22 +00:00

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

with the documentation.


[SVN r23320]
This commit is contained in:
Jonathan Brandmeyer
2004-07-03 03:54:35 +00:00
parent b76f185cb6
commit c246e918f4

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;