fix encoding issue which prevented PEPs from building

This commit is contained in:
Benjamin Peterson 2008-05-14 21:16:02 +00:00
parent c790398022
commit 190f671d74
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ Characters not supported by user's console are hex-escaped on printing,
by the Unicode encoders' error-handler. If the error-handler of the
output file is 'backslashreplace', such characters are hex-escaped
without raising UnicodeEncodeError. For example, if your default
encoding is ASCII, ``print('¢')`` will prints '\\xa2'. If your encoding
encoding is ASCII, ``print('¢')`` will prints '\\xa2'. If your encoding
is ISO-8859-1, '' will be printed.