Fix typo on MutableSequence docstring.

This commit is contained in:
Guido van Rossum 2013-07-25 11:55:41 -07:00
parent bd2a757010
commit 840c310a25
1 changed files with 1 additions and 1 deletions

View File

@ -662,7 +662,7 @@ class MutableSequence(Sequence):
__slots__ = ()
"""All the operations on a read-only sequence.
"""All the operations on a read-write sequence.
Concrete subclasses must provide __new__ or __init__,
__getitem__, __setitem__, __delitem__, __len__, and insert().