summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-06-30 15:35:55 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-06-30 15:35:55 (GMT)
commit12b8d14991d54deedac7d7ca51c7f95006e6a7bc (patch)
tree4f1366446bebca83d52ebee1ce7502d5fe3146ed /Misc/NEWS
parente6c910e9537d405a11377a478556731b4eaec419 (diff)
downloadcpython-12b8d14991d54deedac7d7ca51c7f95006e6a7bc.zip
cpython-12b8d14991d54deedac7d7ca51c7f95006e6a7bc.tar.gz
cpython-12b8d14991d54deedac7d7ca51c7f95006e6a7bc.tar.bz2
Issue #12451: doctest.debug_script() doesn't create a temporary file anymore to
avoid encoding issues (it used the locale encoding, whereas UTF-8 should be). Remove also an unused import (warnings).
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 086c8da..e6c1293 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -25,6 +25,9 @@ Core and Builtins
Library
-------
+- Issue #12451: doctest.debug_script() doesn't create a temporary file
+ anymore to avoid encoding issues.
+
- Issue #12451: pydoc.synopsis() now reads the encoding cookie if available,
to read the Python script from the right encoding.