Home | History | Annotate | Download | only in python2.7

Lines Matching defs:Sequence

19            "Sequence", "MutableSequence",
566 class Sequence(Sized, Iterable, Container):
567 """All the operations on a read-only sequence.
610 Sequence.register(tuple)
611 Sequence.register(basestring)
612 Sequence.register(buffer)
613 Sequence.register(xrange)
616 class MutableSequence(Sequence):
618 """All the operations on a read-only sequence.
639 'S.append(object) -- append object to the end of the sequence'
649 'S.extend(iterable) -- extend sequence by appending elements from the iterable'