]> granicus.if.org Git - python/commitdiff
Fix typo on MutableSequence docstring.
authorGuido van Rossum <guido@python.org>
Thu, 25 Jul 2013 18:55:41 +0000 (11:55 -0700)
committerGuido van Rossum <guido@python.org>
Thu, 25 Jul 2013 18:55:41 +0000 (11:55 -0700)
Lib/collections/abc.py

index 8bac957808617babff694f72fb2e9f8adbe9210f..a8681eaebd0f39b482ad9fc8167b96276d9a19b6 100644 (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().