diff options
author | Brett Cannon <brett@python.org> | 2015-04-13 20:32:16 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2015-04-13 20:32:16 (GMT) |
commit | 8396b8ef0886ee9fe60301b2e5675b2b6a6e1aa8 (patch) | |
tree | 1ad4b3c36d545ed5b1c662b02e10d0782833ea51 | |
parent | 9d2a01fb2b4fa9af408973cbee68a16467ede18b (diff) | |
download | cpython-8396b8ef0886ee9fe60301b2e5675b2b6a6e1aa8.zip cpython-8396b8ef0886ee9fe60301b2e5675b2b6a6e1aa8.tar.gz cpython-8396b8ef0886ee9fe60301b2e5675b2b6a6e1aa8.tar.bz2 |
Fix a grammar error in the porting HOWTO as found by Eric Smith.
-rw-r--r-- | Doc/howto/pyporting.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/pyporting.rst b/Doc/howto/pyporting.rst index 7fafc3c..a2aaf36 100644 --- a/Doc/howto/pyporting.rst +++ b/Doc/howto/pyporting.rst @@ -207,7 +207,7 @@ 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). Due +between Python 2 and 3 because ``str`` in Python 3 doesn't have the method). Do note that as of Python 3.5 the ``__mod__`` method was added to the bytes type. ======================== ===================== |