summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2013-10-13 14:55:46 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2013-10-13 14:55:46 (GMT)
commite206b6e10ef051da924769ab0b449f0932c1a344 (patch)
tree984834a487f9aa6af2931d39b7284027f80bfa11 /Misc
parent5983258bf238367e621cae346fce883f934a07a1 (diff)
parent6cb2b5b1e1ded4c10e305e493e016a7ccf0275cd (diff)
downloadcpython-e206b6e10ef051da924769ab0b449f0932c1a344.zip
cpython-e206b6e10ef051da924769ab0b449f0932c1a344.tar.gz
cpython-e206b6e10ef051da924769ab0b449f0932c1a344.tar.bz2
Issue #17827: document codecs.encode and codecs.decode
- Merge from 3.3 - Added to What's New since these are more important in 3.x, as the bytes<->bytes and str<->str codecs don't fit the text model convenience methods in 3.x the way they did the basestring<->basestring methods in the 2.x text model - Included under Library in Misc/NEWS for the same reason
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ded3bb4..9975f5a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -42,6 +42,9 @@ Core and Builtins
Library
-------
+- Issue #17827: Add the missing documentation for ``codecs.encode`` and
+ ``codecs.decode``.
+
- Issue #19218: Rename collections.abc to _collections_abc in order to
speed up interpreter start.