Message227341
| Author |
ncoghlan |
| Recipients |
Arfrever, ezio.melotti, lemburg, ncoghlan, pitrou, r.david.murray, serhiy.storchaka, vstinner |
| Date |
2014年09月23日.10:57:54 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1411469874.84.0.592893563163.issue18814@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
The function definition again, this time with a draft docstring:
def convert_surrogateescape(data, errors='replace'):
"""Convert escaped raw bytes by applying a different error handler
Uses the "replace" error handler by default, but any input
error handler may be specified.
"""
return data.encode('utf-8', 'surrogateescape').decode('utf-8', errors) |
|