mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Issue #23733: Mention bytes.__mod__ in the porting HOWTO.
This commit is contained in:
parent
65da9a87c5
commit
fd53f98459
1 changed files with 2 additions and 3 deletions
|
@ -207,13 +207,12 @@ that's ``str``/``bytes`` in Python 2 and ``bytes`` in Python 3). The following
|
|||
table lists the **unique** methods of each data type across Python 2 & 3
|
||||
(e.g., the ``decode()`` method is usable on the equivalent binary data type in
|
||||
either Python 2 or 3, but it can't be used by the text data type consistently
|
||||
between Python 2 and 3 because ``str`` in Python 3 doesn't have the method).
|
||||
between Python 2 and 3 because ``str`` in Python 3 doesn't have the method). Due
|
||||
note that as of Python 3.5 the ``__mod__`` method was added to the bytes type.
|
||||
|
||||
======================== =====================
|
||||
**Text data** **Binary data**
|
||||
------------------------ ---------------------
|
||||
__mod__ (``%`` operator)
|
||||
------------------------ ---------------------
|
||||
\ decode
|
||||
------------------------ ---------------------
|
||||
encode
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue