summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-08-15 09:15:02 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-08-15 09:15:02 (GMT)
commitbae0e623f9e940f72df8e1f097a5b8837544eb03 (patch)
tree44d4912c29da9007aa59bd5df82de82a9c72b2ab /Misc
parenteb603e0de1875b7597c731a22d293398a812ee42 (diff)
downloadcpython-bae0e623f9e940f72df8e1f097a5b8837544eb03.zip
cpython-bae0e623f9e940f72df8e1f097a5b8837544eb03.tar.gz
cpython-bae0e623f9e940f72df8e1f097a5b8837544eb03.tar.bz2
Merged revisions 84060 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84060 | victor.stinner | 2010-08-15 11:12:51 +0200 (dim., 15 août 2010) | 4 lines Issue #9603: posix.ttyname() and posix.ctermid() decode the terminal name using the filesystem encoding and surrogateescape error handler. Patch written by David Watson. ........
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 3432993..81d3e81 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -93,6 +93,10 @@ C-API
Library
-------
+- Issue #9603: posix.ttyname() and posix.ctermid() decode the terminal name
+ using the filesystem encoding and surrogateescape error handler. Patch
+ written by David Watson.
+
- Issue #8688: MANIFEST files created by distutils now include a magic
comment indicating they are generated. Manually maintained MANIFESTs
without this marker will not be overwritten or removed.