From: <md...@us...> - 2007-11-06 19:48:44
|
Revision: 4134 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4134&view=rev Author: mdboom Date: 2007-11-06 11:48:40 -0800 (Tue, 06 Nov 2007) Log Message: ----------- Use "from matplotlib.numerix import npyma as ma" Modified Paths: -------------- branches/transforms/lib/matplotlib/image.py branches/transforms/lib/matplotlib/lines.py branches/transforms/lib/matplotlib/scale.py Modified: branches/transforms/lib/matplotlib/image.py =================================================================== --- branches/transforms/lib/matplotlib/image.py 2007-11-06 19:46:45 UTC (rev 4133) +++ branches/transforms/lib/matplotlib/image.py 2007-11-06 19:48:40 UTC (rev 4134) @@ -7,7 +7,7 @@ import os import numpy as npy -import numerix.ma as ma +from matplotlib.numerix import npyma as ma from matplotlib import rcParams from artist import Artist Modified: branches/transforms/lib/matplotlib/lines.py =================================================================== --- branches/transforms/lib/matplotlib/lines.py 2007-11-06 19:46:45 UTC (rev 4133) +++ branches/transforms/lib/matplotlib/lines.py 2007-11-06 19:48:40 UTC (rev 4134) @@ -8,7 +8,7 @@ import numpy as npy -import numerix.ma as ma +from matplotlib.numerix import npyma as ma from matplotlib import verbose import artist from artist import Artist Modified: branches/transforms/lib/matplotlib/scale.py =================================================================== --- branches/transforms/lib/matplotlib/scale.py 2007-11-06 19:46:45 UTC (rev 4133) +++ branches/transforms/lib/matplotlib/scale.py 2007-11-06 19:48:40 UTC (rev 4134) @@ -1,5 +1,5 @@ import numpy as npy -from numpy import ma +from matplotlib.numerix import npyma as ma from ticker import NullFormatter, ScalarFormatter, LogFormatterMathtext from ticker import NullLocator, LogLocator, AutoLocator This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |