Importing NumPy in Python 3, I get the following error message:
>>> import numpy
/Library/Frameworks/Python.framework/Versions/3.2/lib/python3.2/site-packages/numpy/random/__init__.py:91: RuntimeWarning: numpy.ndarray size changed, may indicate binary incompatibility
from .mtrand import *
>>>
However, numpy is imported after that (e.g. I can call dir(numpy) to list its contents)
a) What does this message mean?
b) Since I am new to NumPy: Can you suggest a test for me to make sure NumPy is functioning properly?