From: John H. <jdh...@ac...> - 2005-06-20 15:41:25
|
>>>>> "Werner" == Werner F Bruhin <wer...@fr...> writes: Werner> Hi John, When creating a py2exe version of my app with the Werner> 0.82 build it fails due to an import error on line 96 of Werner> numerix. Werner> I use numeric and .matplotlibrc is configured accordingly. Werner> These __import__ were not present in 0.8, can they savely Werner> be removed? Yes, these are mainly used as a convenience, so that the subpackages of the numerix module (random_array, mlab, linear_algebra, etc) are available in the numerix namespace. This enables you to just do a single import, but the matplotlib code itself does not rely on it if I recall correctly. import matplotlib.numerix as nx nx.linear_algebra.inverse JDH |