Home | History | Annotate | Download | only in config

Lines Matching full:appending

5149 writing or appending.  The file will be created if it doesn't exist
5150 when opened for writing or appending; it will be truncated when
6941 list(iterable) -> new list initialized from iterable's itemsHcmp() wrapper for sort with custom keys.Object wrapper with a custom sort key.Private method returning an estimate of len(list(it)).x.__getitem__(y) <==> x[y]L.__reversed__() -- return a reverse iterator over the listL.__sizeof__() -- size of L in memory, in bytesL.append(object) -- append object to endL.insert(index, object) -- insert object before indexL.extend(iterable) -- extend list by appending elements from the iterableL.pop([index]) -> item -- remove and return item at index (default last).