summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2008-02-21 22:11:37 (GMT)
committerRaymond Hettinger <python@rcn.com>2008-02-21 22:11:37 (GMT)
commitb3a65f8d19f55437406a446927238a9e6f7d3902 (patch)
treec2f8e9d8e222595c153e8d7b38815cd7d1f056fb /Misc
parent6f7140c762710ee8412cb07e87194d1de087ce9b (diff)
downloadcpython-b3a65f8d19f55437406a446927238a9e6f7d3902.zip
cpython-b3a65f8d19f55437406a446927238a9e6f7d3902.tar.gz
cpython-b3a65f8d19f55437406a446927238a9e6f7d3902.tar.bz2
Move UserString to collections.
Removed decode() method. Added isidentifier() and format() methods. Drop MutableUserString class.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 2 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 26cc2db..1a3ae21 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1650,7 +1650,8 @@ Library
XXX their API still needs to be modernized (i.e. eliminate the iter methods).
- Created new UserDict class in collections module. This one inherits from and
- complies with the MutableMapping ABC.
+ complies with the MutableMapping ABC. Also, moved UserString and UserList
+ to the collections module. The MutableUserString class was removed.
- Removed UserDict.DictMixin. Replaced all its uses with
collections.MutableMapping.