summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Curtin <brian.curtin@gmail.com>2010-09-23 13:48:06 +0000
committerBrian Curtin <brian.curtin@gmail.com>2010-09-23 13:48:06 +0000
commite49aefcc5139c3effce4f7718c57b4be9d0b5b5b (patch)
treee0d952244a6e5a0c2cf23c057c08aebf7fe5e04d
parent4b517db26033f23562dbf256bd571b6fc16376ea (diff)
downloadcpython-git-e49aefcc5139c3effce4f7718c57b4be9d0b5b5b.tar.gz
Merged revisions 84971 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84971 | brian.curtin | 2010-09-23 08:45:21 -0500 (Thu, 23 Sep 2010) | 2 lines #9582 - add a missing "are" and reflow the line. ........
-rw-r--r--Doc/faq/programming.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst
index c54bb28144..d506a8e3a8 100644
--- a/Doc/faq/programming.rst
+++ b/Doc/faq/programming.rst
@@ -979,8 +979,8 @@ and then convert decimal strings to numeric values using :func:`int` or
:func:`float`. ``split()`` supports an optional "sep" parameter which is useful
if the line uses something other than whitespace as a separator.
-For more complicated input parsing, regular expressions more powerful than C's
-:cfunc:`sscanf` and better suited for the task.
+For more complicated input parsing, regular expressions are more powerful
+than C's :cfunc:`sscanf` and better suited for the task.
What does 'UnicodeError: ASCII [decoding,encoding] error: ordinal not in range(128)' mean?