From: Guido van Rossum Date: Thu, 25 Jul 2013 18:55:41 +0000 (-0700) Subject: Fix typo on MutableSequence docstring. X-Git-Tag: v3.4.0a1~84 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=840c310a2577459dd9f6ac9f5f9b136d7f4829f8;p=python Fix typo on MutableSequence docstring. --- diff --git a/Lib/collections/abc.py b/Lib/collections/abc.py index 8bac957808..a8681eaebd 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().