summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-07-05 12:31:28 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-07-05 12:31:28 (GMT)
commitd7772bc4cb42418f1fd347afe777fd7a6d5a7287 (patch)
treeb4789ea50700010a00fab494bfc8ff925da9ebb8 /Misc
parent5b1261d750793539cf4508a1e76c2f6d20900ac7 (diff)
parent91e08772a6da22166a2ad4ee52fecaf80df9e5e9 (diff)
downloadcpython-d7772bc4cb42418f1fd347afe777fd7a6d5a7287.zip
cpython-d7772bc4cb42418f1fd347afe777fd7a6d5a7287.tar.gz
cpython-d7772bc4cb42418f1fd347afe777fd7a6d5a7287.tar.bz2
(merge 3.2) Issue #12451: pydoc: html_getfile() now uses tokenize.open() to
support Python scripts using a encoding different than UTF-8 (read the coding cookie of the script).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5d1530a..4f41fb1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -219,6 +219,10 @@ Core and Builtins
Library
-------
+- Issue #12451: pydoc: html_getfile() now uses tokenize.open() to support
+ Python scripts using a encoding different than UTF-8 (read the coding cookie
+ of the script).
+
- Issue #12493: subprocess: Popen.communicate() now also handles EINTR errors
if the process has only one pipe.