summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2013-10-13 14:22:13 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2013-10-13 14:22:13 (GMT)
commit6cb2b5b1e1ded4c10e305e493e016a7ccf0275cd (patch)
tree6800c6a1d5432828de72b0e1c08fca0510feda52 /Misc
parentaeaecfd25761b89820db258ca6c60f3c58c0502a (diff)
downloadcpython-6cb2b5b1e1ded4c10e305e493e016a7ccf0275cd.zip
cpython-6cb2b5b1e1ded4c10e305e493e016a7ccf0275cd.tar.gz
cpython-6cb2b5b1e1ded4c10e305e493e016a7ccf0275cd.tar.bz2
Issue #17827: Document codecs.encode and codecs.decode
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 536ea0e..e764376 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -76,6 +76,9 @@ Core and Builtins
Library
-------
+- Issue #17827: Add the missing documentation for ``codecs.encode`` and
+ ``codecs.decode``.
+
- Issue #18458: Prevent crashes with newer versions of libedit. Its readline
emulation has changed from 0-based indexing to 1-based like gnu readline.
Original patch by Ronald Oussoren.