From: Brian Curtin Date: Thu, 23 Sep 2010 13:45:21 +0000 (+0000) Subject: #9582 - add a missing "are" and reflow the line. X-Git-Tag: v3.2a3~165 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5a7a52fbb0d8097e0e0e5dcf9227b273ee499c66;p=python #9582 - add a missing "are" and reflow the line. --- diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst index 41136646bb..dff6074e90 100644 --- a/Doc/faq/programming.rst +++ b/Doc/faq/programming.rst @@ -988,8 +988,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 'UnicodeDecodeError' or 'UnicodeEncodeError' error mean?