Home | History | Annotate | Download | only in lib-dynload
__gmon_start__ _init _fini __cxa_finalize _Jv_RegisterClasses PyInt_FromLong PyString_FromStringAndSize PyLong_FromSsize_t PyExc_RuntimeError PyErr_SetString _Py_NoneStruct PyUnicodeUCS2_FromUnicode PyList_New PyList_SetItem memcpy PyObject_RichCompareBool PyObject_GetAttrString _Py_BuildValue_SizeT PyExc_AttributeError PyErr_ExceptionMatches PyErr_Clear realloc PyErr_NoMemory memmove _PyErr_BadInternalCall _PyArg_ParseTuple_SizeT PyExc_ValueError PyList_Size PyList_GetItem PyExc_TypeError PyFile_AsFile fread ferror PyExc_IOError PyErr_SetFromErrno clearerr PyExc_EOFError Py_Py3kWarningFlag PyExc_DeprecationWarning PyErr_WarnEx PyObject_GetIter PyIter_Next PyErr_Occurred PyType_IsSubtype PyInt_FromSsize_t PyTuple_New PyLong_FromVoidPtr malloc PyExc_IndexError PyNumber_AsSsize_t PySlice_Type PySlice_GetIndicesEx PyErr_BadArgument PyErr_Format free PyObject_GC_UnTrack PyObject_GC_Del _PyArg_Parse_SizeT PyFloat_FromDouble PyLong_FromUnsignedLong PyObject_ClearWeakRefs PyExc_SystemError fwrite PyExc_OverflowError PyLong_AsUnsignedLong _PyObject_GC_New PyObject_GC_Track _Py_NotImplementedStruct _Py_TrueStruct _Py_ZeroStruct PyObject_RichCompare PySequence_GetItem _PyArg_NoKeywords PyMem_Realloc PySequence_Size PyTuple_Pack PyObject_Repr PyOS_snprintf PyString_FromString PyString_ConcatAndDel initarray PyType_Type Py_InitModule4 PyModule_AddObject PyObject_GenericGetAttr PyType_GenericAlloc PyObject_Free PyObject_SelfIter libc.so.6 _edata __bss_start _end GLIBC_2.1.3 GLIBC_2.0 
don't know how to byteswap this array type /s/ndk-toolchain/src/python/Python-2.7.5/Modules/arraymodule.c fromunicode() may only be called on type 'u' arrays string length not a multiple of item size array.read() not supported in 3.x; use array.fromfile() can only extend with array of same kind array assignment index out of range can only assign array (not "%.200s") to array slice attempt to assign array of size %zd to extended slice of size %zd array.remove(x): x not in list Accessing non-existent array segment tounicode() may only be called on type 'u' arrays array.write() not supported in 3.x; use array.tofile() can only extend array with array (not "%.200s") can only append array (not "%.200s") to array unsigned short is less than minimum unsigned short is greater than maximum u#;array item must be unicode character array item must be unicode character signed char is less than minimum signed char is greater than maximum unsigned long is less than minimum unsigned int is less than minimum bad typecode (must be c, b, B, u, h, H, i, I, l, L, f or d) array indices must be integers the typecode character used to create the array the size, in bytes, of one array item __dict__ O(cO)O nO:insert u#:fromunicode s#:fromstring arg must be list On:fromfile arg1 must be open file not enough items in file array indices must be integer |n:pop pop from empty array pop index out of range d;array item must be float f;array item must be float l;array item must be integer i;array item must be integer h;array item must be integer b;array item must be integer c;array item must be char array index out of range arg must be open file array.index(x): x not in list array.array() c|O:array array('%c') array('%c', ArrayType array.array arrayiterator append buffer_info byteswap __copy__ count __deepcopy__ extend fromlist index read __reduce__ remove reverse tofile tolist tostring tounicode write __sizeof__ typecode itemsize g 
@ This module defines an object type which can efficiently represent an array of basic values: characters, integers, floating point numbers. Arrays are sequence types and behave very much like lists, except that the type of objects stored in them is constrained. The type is specified at object creation time by using a type code, which is a single character. The following type codes are defined: Type code C Type Minimum size in bytes 'c' character 1 'b' signed integer 1 'B' unsigned integer 1 'u' Unicode character 2 'h' signed integer 2 'H' unsigned integer 2 'i' signed integer 2 'I' unsigned integer 2 'l' signed integer 4 'L' unsigned integer 4 'f' floating point 4 'd' floating point 8 The constructor is: array(typecode [, initializer]) -- create a new array array(typecode [, initializer]) -> array Return a new array whose items are restricted by typecode, and initialized from the optional initializer value, which must be a list, string or iterable over elements of the appropriate type. Arrays represent basic values and behave very much like lists, except the type of objects stored in them is constrained. Methods: append() -- append a new item to the end of the array buffer_info() -- return information giving the current memory info byteswap() -- byteswap all the items of the array count() -- return number of occurrences of an object extend() -- extend array by appending multiple elements from an iterable fromfile() -- read items from a file object fromlist() -- append items from the list fromstring() -- append items from the string index() -- return index of first occurrence of an object insert() -- insert a new item into the array at a provided position pop() -- remove and return item (default last) read() -- DEPRECATED, use fromfile() remove() -- remove first occurrence of an object reverse() -- reverse the order of the items in the array tofile() -- write all items to a file object tolist() -- return the array converted to an ordinary list tostring() -- return the array converted to a string write() -- DEPRECATED, use tofile() Attributes: typecode -- the typecode character used to create the array itemsize -- the length in bytes of one array item append(x) Append new value x to the end of the array. buffer_info() -> (address, length) Return a tuple (address, length) giving the current memory address and the length in items of the buffer used to hold array's contents The length should be multiplied by the itemsize attribute to calculate the buffer length in bytes. byteswap() Byteswap all items of the array. If the items in the array are not 1, 2, 4, or 8 bytes in size, RuntimeError is raised. copy(array) Return a copy of the array. count(x) Return number of occurrences of x in the array. extend(array or iterable) Append items to the end of the array. fromfile(f, n) Read n objects from the file object f and append them to the end of the array. Also called as read. fromlist(list) Append items to array from list. fromstring(string) Appends items from the string, interpreting it as an array of machine values,as if it had been read from a file using the fromfile() method). fromunicode(ustr) Extends this array with data from the unicode string ustr. The array must be a type 'u' array; otherwise a ValueError is raised. Use array.fromstring(ustr.decode(...)) to append Unicode data to an array of some other type. index(x) Return index of first occurrence of x in the array. insert(i,x) Insert a new item x into the array before position i. pop([i]) Return the i-th element and delete it from the array. i defaults to -1. Return state information for pickling. remove(x) Remove the first occurrence of x in the array. reverse() Reverse the order of the items in the array. tofile(f) Write all items (as machine values) to the file object f. Also called as write. tolist() -> list Convert array to an ordinary list with the same items. tostring() -> string Convert the array to an array of machine values and return the string representation. tounicode() -> unicode Convert the array to a unicode string. The array must be a type 'u' array; otherwise a ValueError is raised. Use array.tostring().decode() to obtain a unicode string from an array of some other type. __sizeof__() -> int Size of the array in memory, in bytes. ` B 0W H T @ 0N M Q ` > A 0 c A b 0K B P PA u J h @ H I i p@ I B L l @ L B K f `B ? d 0B ? H p< D 0 H P7 ! G P= T 1 C @C a @% a P/ a P @ a 1 (a . .a 1 ;a P. ` _ ) Ba ( @ ^ & ^ % @ Ka F @ ^ $ m_ P; Qa p+ Va ! @ aa P: ha pa `E wa ` ~a D a D @ a F a @ a p^ a ` ^ 
GCC: (GNU) 4.2.3 (Ubuntu 4.2.3-2ubuntu7) GCC: (GNU) 4.6.x-google 20120106 (prerelease) GCC: (GNU) 4.2.3 (Ubuntu 4.2.3-2ubuntu7) 
.symtab .strtab .shstrtab .hash .dynsym .dynstr .gnu.version .gnu.version_r .rel.dyn .rel.plt .init .text .fini .rodata .eh_frame_hdr .eh_frame .ctors .dtors .jcr .dynamic .got .got.plt .data .bss .comment .debug_aranges .debug_info .debug_abbrev .debug_line .debug_ranges 
initfini.c crtstuff.c __CTOR_LIST__ __DTOR_LIST__ __JCR_LIST__ __do_global_dtors_aux completed.5467 dtor_idx.5469 frame_dummy __CTOR_END__ __FRAME_END__ __JCR_END__ __do_global_ctors_aux arraymodule.c array_length array_buffer_getsegcount arrayiter_next arrayiter_traverse array_get_itemsize l_getitem i_getitem HH_getitem h_getitem BB_getitem b_getitem array_get_typecode c_getitem array_sizeof array_byteswap u_getitem array_tolist array_reverse array_contains array_reduce array_resize ins1 array_insert array_append array_fromunicode array_fromstring array_fromlist array_fromfile array_fromfile_as_read array_iter_extend array_do_extend Arraytype array_extend array_count array_buffer_info newarrayobject array_slice array_copy array_ass_subscr array_ass_slice array_remove array_pop array_repeat array_inplace_repeat arrayiter_dealloc d_setitem f_setitem l_setitem i_setitem h_setitem BB_setitem c_setitem d_getitem f_getitem LL_getitem II_getitem array_dealloc array_buffer_getwritebuf array_buffer_getreadbuf array_item array_tounicode array_tostring array_tofile array_tofile_as_write array_index array_inplace_concat array_ass_item array_concat HH_setitem u_setitem b_setitem LL_setitem II_setitem array_iter PyArrayIter_Type array_richcompare array_new descriptors array_subscr array_repr module_doc a_methods array_as_sequence array_as_mapping array_as_buffer arraytype_doc array_methods array_getsets append_doc buffer_info_doc byteswap_doc copy_doc count_doc extend_doc fromfile_doc fromlist_doc fromstring_doc fromunicode_doc index_doc insert_doc pop_doc reduce_doc remove_doc reverse_doc tofile_doc tolist_doc tostring_doc tounicode_doc sizeof_doc .L513 .L515 .L516 .L517 .L518 .L519 _GLOBAL_OFFSET_TABLE_ __x86.get_pc_thunk.bx __dso_handle __DTOR_END__ _DYNAMIC PyModule_AddObject _Py_ZeroStruct PyList_GetItem PyIter_Next PyExc_ValueError PyLong_FromVoidPtr PyFile_AsFile PyLong_FromUnsignedLong PyObject_SelfIter PyExc_SystemError __gmon_start__ _Jv_RegisterClasses realloc@@GLIBC_2.0 PyExc_EOFError _PyArg_ParseTuple_SizeT _fini PyObject_GC_Del PyErr_NoMemory PyObject_GC_UnTrack _Py_NotImplementedStruct PyExc_TypeError PyMem_Realloc PyOS_snprintf PyString_FromStringAndSize PyErr_Format PyFloat_FromDouble _PyArg_NoKeywords PyErr_ExceptionMatches PyErr_Occurred free@@GLIBC_2.0 PyExc_IndexError PyExc_DeprecationWarning _Py_TrueStruct PyString_FromString _PyObject_GC_New memcpy@@GLIBC_2.0 PyTuple_Pack PyInt_FromLong PySlice_GetIndicesEx PySequence_GetItem PyObject_GenericGetAttr PyObject_RichCompare PySequence_Size PyObject_GetIter PyExc_RuntimeError clearerr@@GLIBC_2.0 PyList_Size PyType_IsSubtype PyType_Type PyExc_IOError PyErr_BadArgument PyErr_WarnEx PyNumber_AsSsize_t fwrite@@GLIBC_2.0 PyObject_ClearWeakRefs PyObject_GetAttrString __bss_start malloc@@GLIBC_2.0 initarray _Py_NoneStruct PyExc_OverflowError _PyArg_Parse_SizeT PyExc_AttributeError PySlice_Type PyString_ConcatAndDel memmove@@GLIBC_2.0 PyInt_FromSsize_t Py_InitModule4 PyObject_Free _end PyErr_Clear PyTuple_New _PyErr_BadInternalCall PyUnicodeUCS2_FromUnicode PyObject_RichCompareBool PyLong_FromSsize_t PyErr_SetString Py_Py3kWarningFlag PyList_SetItem fread@@GLIBC_2.0 _edata ferror@@GLIBC_2.0 PyList_New PyErr_SetFromErrno PyType_GenericAlloc __cxa_finalize@@GLIBC_2.1.3 PyObject_GC_Track PyObject_Repr _Py_BuildValue_SizeT PyLong_AsUnsignedLong _init