redvypr.config.configList

class redvypr.config.configList(initlist=None)

The class is a modified list that allows to add attributes. If a deepcopy of the class is done, a standard list will be returned.

__init__(initlist=None)

Methods

__init__([initlist])

append(item)

S.append(value) -- append value to the end of the sequence

clear()

copy()

count(value)

extend(other)

S.extend(iterable) -- extend sequence by appending elements from the iterable

index(value, [start, [stop]])

Raises ValueError if the value is not present.

insert(i, item)

S.insert(index, value) -- insert value before index

pop([index])

Raise IndexError if list is empty or index is out of range.

remove(item)

S.remove(value) -- remove first occurrence of value.

reverse()

S.reverse() -- reverse IN PLACE

sort(*args, **kwds)