From 840c310a2577459dd9f6ac9f5f9b136d7f4829f8 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 25 Jul 2013 11:55:41 -0700 Subject: Fix typo on MutableSequence docstring. --- Lib/collections/abc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/collections/abc.py b/Lib/collections/abc.py index 8bac957..a8681ea 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(). -- cgit v0.12