diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-05-15 17:43:57 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-05-15 17:43:57 (GMT) |
commit | 0c3d21de0580995cc06b551c967cc4a9fa935775 (patch) | |
tree | 80d1adeda8e5ff0c993843cd046b9974fbd2ff73 | |
parent | ccbd69437aa00ab8d897397769549acd42551de6 (diff) | |
download | cpython-0c3d21de0580995cc06b551c967cc4a9fa935775.zip cpython-0c3d21de0580995cc06b551c967cc4a9fa935775.tar.gz cpython-0c3d21de0580995cc06b551c967cc4a9fa935775.tar.bz2 |
fix one more runon
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |