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?
I found this bug report which seems to say that the warning is not important. It looks like the bug report was marked as fixed, so future version of NumPy will not display the warning.