From c246e918f48c25697f4e7d4ab6101f2d5e9aec7f Mon Sep 17 00:00:00 2001 From: Jonathan Brandmeyer Date: Sat, 3 Jul 2004 03:54:35 +0000 Subject: [PATCH] Use Numeric.ArrayType in preference to numarray.NDArray, in accordance with the documentation. [SVN r23320] --- src/numeric.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/numeric.cpp b/src/numeric.cpp index 7d275ff0..900f2e1d 100644 --- a/src/numeric.cpp +++ b/src/numeric.cpp @@ -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;