Skip to content

Commit c246e91

Browse files
author
Jonathan Brandmeyer
committed
Use Numeric.ArrayType in preference to numarray.NDArray, in accordance
with the documentation. [SVN r23320]
1 parent b76f185 commit c246e91

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/numeric.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@ namespace
4040
{
4141
if (module_name.size() == 0)
4242
{
43-
module_name = "numarray";
44-
type_name = "NDArray";
45-
if (load(false))
46-
return true;
4743
module_name = "Numeric";
4844
type_name = "ArrayType";
45+
if (load(false))
46+
return true;
47+
module_name = "numarray";
48+
type_name = "NDArray";
4949
}
5050

5151
state = failed;

0 commit comments

Comments
 (0)