-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
Closed as not planned
Labels
type-bugAn unexpected behavior, bug, or errorAn unexpected behavior, bug, or error
Description
Bug report
Bug description:
str() and decode() do decoding but they have encoding
argument as shown below:
class str(object=b'', encoding='utf-8', errors='strict')
bytes.decode(encoding='utf-8', errors='strict')¶
bytearray.decode(encoding='utf-8', errors='strict')¶
So, they should have decoding
argument as shown below:
class str(object=b'', decoding='utf-8', errors='strict')
bytes.decode(decoding='utf-8', errors='strict')¶
bytearray.decode(decoding='utf-8', errors='strict')¶
CPython versions tested on:
3.13
Operating systems tested on:
Windows
Metadata
Metadata
Assignees
Labels
type-bugAn unexpected behavior, bug, or errorAn unexpected behavior, bug, or error