summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2015-01-06 14:37:01 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2015-01-06 14:37:01 (GMT)
commit582acb75e9a03e21281fe3c3877b6d48a8f0fa8f (patch)
treec8e497645e1ce8c0a6384a1063cac52d09dd02fe /Misc
parent5d575399bca935fec36d6a1ba538115406673415 (diff)
parentb9fdb7a452c2b6f7a628118b5f695bd061b62cc8 (diff)
downloadcpython-582acb75e9a03e21281fe3c3877b6d48a8f0fa8f.zip
cpython-582acb75e9a03e21281fe3c3877b6d48a8f0fa8f.tar.gz
cpython-582acb75e9a03e21281fe3c3877b6d48a8f0fa8f.tar.bz2
Merge issue 19548 changes from 3.4
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS8
1 files changed, 8 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3797b78..0d48134 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1441,6 +1441,10 @@ C API
Documentation
-------------
+- Issue #19548: Update the codecs module documentation to better cover the
+ distinction between text encodings and other codecs, together with other
+ clarifications. Patch by Martin Panter.
+
- Issue #22394: Doc/Makefile now supports ``make venv PYTHON=../python`` to
create a venv for generating the documentation, e.g.,
``make html PYTHON=venv/bin/python3``.
@@ -1477,6 +1481,10 @@ Documentation
Tests
-----
+- Issue #19548: Added some additional checks to test_codecs to ensure that
+ statements in the updated documentation remain accurate. Patch by Martin
+ Panter.
+
- Issue #22838: All test_re tests now work with unittest test discovery.
- Issue #22173: Update lib2to3 tests to use unittest test discovery.