diff options
author | Brett Cannon <bcannon@gmail.com> | 2008-05-29 05:08:50 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2008-05-29 05:08:50 (GMT) |
commit | abb34fe9f3e9a1d4fe2bedee315e360fbf0b2ce5 (patch) | |
tree | 53be4bd55de2d39e02e4314f8c6aa06231b543f2 /Doc/library/userdict.rst | |
parent | 5ec330cb2f1b041ebba6dedb6a02cd27a7e9f3da (diff) | |
download | cpython-abb34fe9f3e9a1d4fe2bedee315e360fbf0b2ce5.zip cpython-abb34fe9f3e9a1d4fe2bedee315e360fbf0b2ce5.tar.gz cpython-abb34fe9f3e9a1d4fe2bedee315e360fbf0b2ce5.tar.bz2 |
UserString.MutableString has been removed in Python 3.0.
Works on issue #2877. Thanks Quentin Gallet-Gilles for the patch.
Diffstat (limited to 'Doc/library/userdict.rst')
-rw-r--r-- | Doc/library/userdict.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/userdict.rst b/Doc/library/userdict.rst index 7d36401..b0ef645 100644 --- a/Doc/library/userdict.rst +++ b/Doc/library/userdict.rst @@ -178,6 +178,9 @@ The :mod:`UserString` module defines the following classes: mutable object as dictionary key, which would be otherwise very error prone and hard to track down. + .. deprecated:: 2.6 + The :class:`MutableString` class has been removed in Python 3.0. + In addition to supporting the methods and operations of string and Unicode objects (see section :ref:`string-methods`), :class:`UserString` instances provide the following attribute: |