Bases: list
A subclass of list that contains only elements of a given type or types. If an item that is not of the specified type is added to the list, a TypeError is raised.
Parameters: | types : sequence of types
values : sequence, optional
|
---|
Methods Summary
append(x) | |
extend(x) | |
insert(i, x) |
Methods Documentation