Now I get my N-less "array".
So I probably shouldn't have followed my friends advice,
and I should just have written
import my_friends_module
Another solution could be, but don't know if it's safe enough
from my_friends_module import *
# and always as the last import do my own
from scipy import array
Is this a good solution ?