summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-12-16 13:46:36 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-12-16 13:46:36 (GMT)
commit6ec29e299b663662a1610a740c4c7f8066fc63a6 (patch)
tree7bf65e75b7d28f95f679bd164e7db38173585a9e /Misc/NEWS
parentab0e9f7089c04df546af6cacbc8751247cf4020a (diff)
downloadcpython-6ec29e299b663662a1610a740c4c7f8066fc63a6.zip
cpython-6ec29e299b663662a1610a740c4c7f8066fc63a6.tar.gz
cpython-6ec29e299b663662a1610a740c4c7f8066fc63a6.tar.bz2
Issue #8373: The filesystem path of AF_UNIX sockets now uses the filesystem
encoding and the surrogateescape error handler, rather than UTF-8. Patch by David Watson.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3f3d1df..5be6990 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -419,6 +419,10 @@ Core and Builtins
Library
-------
+- Issue #8373: The filesystem path of AF_UNIX sockets now uses the filesystem
+ encoding and the surrogateescape error handler, rather than UTF-8. Patch
+ by David Watson.
+
- Issue #10350: Read and save errno before calling a function which might
overwrite it. Original patch by Hallvard B Furuseth.