summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-08-15 09:12:51 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-08-15 09:12:51 (GMT)
commit5fe6de8c72977c794cbc39001ffd21ae7297684a (patch)
treecca8c38d0c51c135cf5889c6a32163fba1c59e4e /Misc
parent0b5669c0f55501b59aebafcc704ef397861742ce (diff)
downloadcpython-5fe6de8c72977c794cbc39001ffd21ae7297684a.zip
cpython-5fe6de8c72977c794cbc39001ffd21ae7297684a.tar.gz
cpython-5fe6de8c72977c794cbc39001ffd21ae7297684a.tar.bz2
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 7164fcc..f5cfd38 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -83,6 +83,10 @@ Extensions
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.