From 0c3d21de0580995cc06b551c967cc4a9fa935775 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sat, 15 May 2010 17:43:57 +0000 Subject: [PATCH] fix one more runon --- Misc/NEWS | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Misc/NEWS b/Misc/NEWS index a4a69388cf0..39231494e0d 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -14,8 +14,8 @@ Core and Builtins - Issue #8715: Create PyUnicode_EncodeFSDefault() function: Encode a Unicode object to Py_FileSystemDefaultEncoding with the "surrogateescape" error - handler, return a bytes object. If Py_FileSystemDefaultEncoding is not set, - fall back to UTF-8. + handler, and return bytes. If Py_FileSystemDefaultEncoding is not set, fall + back to UTF-8. - Enable shortcuts for common encodings in PyUnicode_AsEncodedString() for any error handler, not only the default error handler (strict)