cmap in eclipse

Hello -

I am using matplotlib in eclipse. For 3D plot test, I am using:

···

====================
from mpl_toolkits.mplot3d import Axes3D
from matplotlib import cm
import matplotlib.pyplot as plt
import numpy as np

fig = plt.figure()
ax = Axes3D(fig)
X = np.arange(-5, 5, 0.25)
Y = np.arange(-5, 5, 0.25)
X, Y = np.meshgrid(X, Y)
R = np.sqrt(X**2 + Y**2)
Z = np.sin(R)
ax.plot_surface(X, Y, Z, rstride=1, cstride=1, cmap=cm.jet)

plt.show()

This script works fine outside of Eclipse; that is, just by running
"python testplot1.py"
but Eclipse says "undefined import from variable: jet"
The following are my script's header lines:

from mpl_toolkits.mplot3d import Axes3D
from matplotlib import cm
import numpy as np
import matplotlib.pyplot as plt

Suggestions are appreciated.
Regards, David