Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8396b8e

Browse files
committed
Fix a grammar error in the porting HOWTO as found by Eric Smith.
1 parent 9d2a01f commit 8396b8e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Doc/howto/pyporting.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ that's ``str``/``bytes`` in Python 2 and ``bytes`` in Python 3). The following
207207
table lists the **unique** methods of each data type across Python 2 & 3
208208
(e.g., the ``decode()`` method is usable on the equivalent binary data type in
209209
either Python 2 or 3, but it can't be used by the text data type consistently
210-
between Python 2 and 3 because ``str`` in Python 3 doesn't have the method). Due
210+
between Python 2 and 3 because ``str`` in Python 3 doesn't have the method). Do
211211
note that as of Python 3.5 the ``__mod__`` method was added to the bytes type.
212212

213213
======================== =====================

0 commit comments

Comments
 (0)