diff options
author | Guido van Rossum <guido@python.org> | 2013-07-25 18:55:41 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2013-07-25 18:55:41 (GMT) |
commit | 840c310a2577459dd9f6ac9f5f9b136d7f4829f8 (patch) | |
tree | 89d9b6a7fde3a0bc8515559b9d41e2c912711cd6 /Lib/collections | |
parent | bd2a7570101d93ec6cc53f6a665b31bc40d09d11 (diff) | |
download | cpython-840c310a2577459dd9f6ac9f5f9b136d7f4829f8.zip cpython-840c310a2577459dd9f6ac9f5f9b136d7f4829f8.tar.gz cpython-840c310a2577459dd9f6ac9f5f9b136d7f4829f8.tar.bz2 |
Fix typo on MutableSequence docstring.
Diffstat (limited to 'Lib/collections')
-rw-r--r-- | Lib/collections/abc.py | 2 |
1 files changed, 1 insertions, 1 deletions
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(). |