https://bugs.documentfoundation.org/show_bug.cgi?id=155937
--- Comment #1 from Chen Xuan <[email protected]> --- frames.__len__() calls the fuction PyUNO_len() in pyuno/source/module/pyuno.cxx. > int nLen = lcl_detach_getLength( me ); > if (nLen >= 0) > return nLen; "nlen" is a 32bit int variable. Remember that 0011 1111 0000 0000 0000 0000 0000 0000 0000 0000 has 32bit suffix 0. So the value of "nlen" is right in PyUNO_len(). Thus this bug should be locate between c++ and python environment. -- You are receiving this mail because: You are the assignee for the bug.
