Why was the MutableString class deprecated in Python 2.6;
and why was it removed in Python 3?
|
|
|||||
|
|
The If you need mutable bytestrings, you might consider using If you aren't really going to do many modifications of a single string by index, modifying a normal string by creating a new one should suit you (for example through There are no mutable unicode strings, because this is considered an uncommon application, but you can always implement |
|||
|
|
|
I'm guessing because strings aren't supposed to be mutable. The primary purpose was "educational", after all. If you need to mutate strings, use a list of strings or StringIO. |
|||
|
|
protected by Thomas Owens Sep 16 '11 at 22:30
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
