[Python-checkins] cpython: Fix a grammar error in the porting HOWTO as found by Eric Smith.

brett.cannon python-checkins at python.org
Mon Apr 13 22:32:22 CEST 2015


https://hg.python.org/cpython/rev/49abb3985db3
changeset:   95614:49abb3985db3
user:        Brett Cannon <brett at python.org>
date:        Mon Apr 13 16:32:16 2015 -0400
summary:
  Fix a grammar error in the porting HOWTO as found by Eric Smith.

files:
  Doc/howto/pyporting.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/howto/pyporting.rst b/Doc/howto/pyporting.rst
--- a/Doc/howto/pyporting.rst
+++ b/Doc/howto/pyporting.rst
@@ -207,7 +207,7 @@
 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.
 
 ======================== =====================

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list