summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-08-15 09:22:44 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-08-15 09:22:44 (GMT)
commit61ec5dca2bf66d43fd196f771b27464e75e8b41a (patch)
tree5cfed0c95be7c57ad3a10e492ff1fd8594e257a8 /Misc
parent5fe6de8c72977c794cbc39001ffd21ae7297684a (diff)
downloadcpython-61ec5dca2bf66d43fd196f771b27464e75e8b41a.zip
cpython-61ec5dca2bf66d43fd196f771b27464e75e8b41a.tar.gz
cpython-61ec5dca2bf66d43fd196f771b27464e75e8b41a.tar.bz2
Issue #9604: posix.initgroups() encodes the username using the fileystem
encoding and surrogateescape error handler. Patch written by David Watson.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f5cfd38..a322b3d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -83,6 +83,9 @@ Extensions
Library
-------
+- Issue #9604: posix.initgroups() encodes the username using the fileystem
+ encoding and surrogateescape error handler. Patch written by David Watson.
+
- Issue #9603: posix.ttyname() and posix.ctermid() decode the terminal name
using the filesystem encoding and surrogateescape error handler. Patch
written by David Watson.