summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-12-12 01:33:04 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-12-12 01:33:04 (GMT)
commit28a4dce6a827eb221e986722c90bb1343e5db8e3 (patch)
tree953cf11d4120074bdec3bc1008a81da484958ea5 /Misc
parent18d378dc3dca99e207047d6a32ebc36ef43c671b (diff)
downloadcpython-28a4dce6a827eb221e986722c90bb1343e5db8e3.zip
cpython-28a4dce6a827eb221e986722c90bb1343e5db8e3.tar.gz
cpython-28a4dce6a827eb221e986722c90bb1343e5db8e3.tar.bz2
remove (un)transform methods
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 0 insertions, 4 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 8f98949..080c86e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -42,10 +42,6 @@ Core and Builtins
- Issue #9915: Speed up sorting with a key.
-- Issue #7475: Added transform() and untransform() methods to both bytes and
- string types. They can be used to access those codecs providing
- bytes-to-bytes and string-to-string mappings.
-
- Issue #8685: Speed up set difference ``a - b`` when source set ``a`` is much
larger than operand ``b``. Patch by Andrew Bennetts.