diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-06-30 15:35:55 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-06-30 15:35:55 (GMT) |
commit | 12b8d14991d54deedac7d7ca51c7f95006e6a7bc (patch) | |
tree | 4f1366446bebca83d52ebee1ce7502d5fe3146ed /Misc/NEWS | |
parent | e6c910e9537d405a11377a478556731b4eaec419 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |