diff --git a/Lib/collections/abc.py b/Lib/collections/abc.py index 8bac9578086..a8681eaebd0 100644 --- a/Lib/collections/abc.py +++ b/Lib/collections/abc.py @@ -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().