mirror of
https://github.com/python/cpython.git
synced 2025-07-19 09:15:34 +00:00
Fix encode/decode method doc of str, bytes, bytearray types
* Specify the default encoding: write 'utf-8' instead of sys.getdefaultencoding(), because the default encoding is now constant * Specify the default errors value
This commit is contained in:
parent
64bc3b28a3
commit
e14e212221
4 changed files with 18 additions and 18 deletions
|
@ -7393,10 +7393,10 @@ unicode_count(PyUnicodeObject *self, PyObject *args)
|
|||
}
|
||||
|
||||
PyDoc_STRVAR(encode__doc__,
|
||||
"S.encode([encoding[, errors]]) -> bytes\n\
|
||||
"S.encode([encoding='utf-8'[, errors='strict']]) -> bytes\n\
|
||||
\n\
|
||||
Encode S using the codec registered for encoding. encoding defaults\n\
|
||||
to the default encoding. errors may be given to set a different error\n\
|
||||
Encode S using the codec registered for encoding. Default encoding\n\
|
||||
is 'utf-8'. errors may be given to set a different error\n\
|
||||
handling scheme. Default is 'strict' meaning that encoding errors raise\n\
|
||||
a UnicodeEncodeError. Other possible values are 'ignore', 'replace' and\n\
|
||||
'xmlcharrefreplace' as well as any other name registered with\n\
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue