Closed
Description
Similar to #14862, the docs for f2py mention a as_column_major_storage
function that does not appear to be defined.
>>> import arr # extension module generated by f2py
# using array.f source from the docs
>>> import numpy
>>> s = arr.as_column_major_storage(array([[1,2,3],[4,5,6]]))
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: module 'arr' has no attribute 'as_column_major_storage'
>>>
I couldn't find a complete reference to methods and attributes of f2py generated extension modules to see if there's anything to replace this method.
>>> print(numpy.__version__, sys.version)
1.17.3 3.6.7 | packaged by conda-forge | (default, Jul 2 2019, 02:18:42)
[GCC 7.3.0]