summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2010-08-19 09:11:51 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2010-08-19 09:11:51 (GMT)
commit5ea823cf55911c03b196f1bf45de4c9a2474a903 (patch)
tree47ef2b4895786b51e0f57edfb9eebcf1fa64e028 /Misc
parentf241afaeadabb5837ce8ccc94c85545f584ce056 (diff)
downloadcpython-5ea823cf55911c03b196f1bf45de4c9a2474a903.zip
cpython-5ea823cf55911c03b196f1bf45de4c9a2474a903.tar.gz
cpython-5ea823cf55911c03b196f1bf45de4c9a2474a903.tar.bz2
Decode NIS data to fs encoding, using the surrogate error handler.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 2 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 31fec7a..3512e86 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -69,7 +69,8 @@ Extensions
- Issue #5737: Add Solaris-specific mnemonics in the errno module. Patch by
Matthew Ahrens.
-- Restore GIL in nis_cat in case of error.
+- Restore GIL in nis_cat in case of error. Decode NIS data to fs encoding,
+ using the surrogate error handler.
- Issue #665761: ``functools.reduce()`` will no longer mask exceptions
other than ``TypeError`` raised by the iterator argument.