Matriz SWIG / python dentro da estrutura

Eu tenho uma estrutura definida dentro do header.h que se parece com:

typedef struct {
....
    int      icntl[40];
    double   cntl[15];
    int      *irn, *jcn;
....

uando eu inicio um objeto com essa estrutura, tenho acesso a números inteiros / duplos, mas não a matrize

>> st.icntl
<Swig Object of type 'int *' at 0x103ce37e0>
>> st.icntl[0]
Traceback (most recent call last):
  File "test_mumps.py", line 19, in <module>
    print s.icntl[0]
TypeError: 'SwigPyObject' object is not subscriptable

Como ter acesso aos valores em leitura / gravação?

questionAnswers(2)

yourAnswerToTheQuestion