According to https://docs.python.org/3/library/functions.html,
the "built-in function" means a python-innate function such as print or sum.
However, type(numpy.array) results in builtin_function_or_method even though the numpy module is not python-innate.
Why does it happen?