@@ -67,27 +67,27 @@ PyAPI_FUNC(int) PyBuffer_FromContiguous(const Py_buffer *view, const void *buf,
6767 error (i.e. the object does not have a buffer interface or
6868 it is not working).
6969
70- If fort is 'F', then if the object is multi-dimensional,
70+ If order is 'F', then if the object is multi-dimensional,
7171 then the data will be copied into the array in
7272 Fortran-style (first dimension varies the fastest). If
73- fort is 'C', then the data will be copied into the array
74- in C-style (last dimension varies the fastest). If fort
73+ order is 'C', then the data will be copied into the array
74+ in C-style (last dimension varies the fastest). If order
7575 is 'A', then it does not matter and the copy will be made
7676 in whatever way is more efficient. */
7777PyAPI_FUNC (int ) PyObject_CopyData (PyObject * dest , PyObject * src );
7878
7979/* Copy the data from the src buffer to the buffer of destination. */
80- PyAPI_FUNC (int ) PyBuffer_IsContiguous (const Py_buffer * view , char fort );
80+ PyAPI_FUNC (int ) PyBuffer_IsContiguous (const Py_buffer * view , char order );
8181
8282/*Fill the strides array with byte-strides of a contiguous
83- (Fortran-style if fort is 'F' or C-style otherwise)
83+ (Fortran-style if order is 'F' or C-style otherwise)
8484 array of the given shape with the given number of bytes
8585 per element. */
8686PyAPI_FUNC (void ) PyBuffer_FillContiguousStrides (int ndims ,
8787 Py_ssize_t * shape ,
8888 Py_ssize_t * strides ,
8989 int itemsize ,
90- char fort );
90+ char order );
9191
9292/* Fills in a buffer-info structure correctly for an exporter
9393 that can only share a contiguous chunk of memory of
0 commit comments