@@ -2731,11 +2731,33 @@ static PyMemberDef PyCData_members[] = {
2731
2731
{ NULL },
2732
2732
};
2733
2733
2734
- static int PyCData_NewGetBuffer (PyObject * myself , Py_buffer * view , int flags )
2734
+ /* Find the innermost type of an array type, returning a borrowed reference */
2735
+ static PyObject *
2736
+ PyCData_item_type (PyObject * type )
2737
+ {
2738
+ if (PyCArrayTypeObject_Check (type )) {
2739
+ StgDictObject * stg_dict ;
2740
+ PyObject * elem_type ;
2741
+
2742
+ /* asserts used here as these are all guaranteed by construction */
2743
+ stg_dict = PyType_stgdict (type );
2744
+ assert (stg_dict );
2745
+ elem_type = stg_dict -> proto ;
2746
+ assert (elem_type );
2747
+ return PyCData_item_type (elem_type );
2748
+ }
2749
+ else {
2750
+ return type ;
2751
+ }
2752
+ }
2753
+
2754
+ static int
2755
+ PyCData_NewGetBuffer (PyObject * myself , Py_buffer * view , int flags )
2735
2756
{
2736
2757
CDataObject * self = (CDataObject * )myself ;
2737
2758
StgDictObject * dict = PyObject_stgdict (myself );
2738
- Py_ssize_t i ;
2759
+ PyObject * item_type = PyCData_item_type ((PyObject * )Py_TYPE (myself ));
2760
+ StgDictObject * item_dict = PyType_stgdict (item_type );
2739
2761
2740
2762
if (view == NULL ) return 0 ;
2741
2763
@@ -2747,12 +2769,7 @@ static int PyCData_NewGetBuffer(PyObject *myself, Py_buffer *view, int flags)
2747
2769
view -> format = dict -> format ? dict -> format : "B" ;
2748
2770
view -> ndim = dict -> ndim ;
2749
2771
view -> shape = dict -> shape ;
2750
- view -> itemsize = self -> b_size ;
2751
- if (view -> itemsize ) {
2752
- for (i = 0 ; i < view -> ndim ; ++ i ) {
2753
- view -> itemsize /= dict -> shape [i ];
2754
- }
2755
- }
2772
+ view -> itemsize = item_dict -> size ;
2756
2773
view -> strides = NULL ;
2757
2774
view -> suboffsets = NULL ;
2758
2775
view -> internal = NULL ;
0 commit comments