diff options
author | Brian Curtin <brian.curtin@gmail.com> | 2010-09-23 13:45:21 (GMT) |
---|---|---|
committer | Brian Curtin <brian.curtin@gmail.com> | 2010-09-23 13:45:21 (GMT) |
commit | 5a7a52fbb0d8097e0e0e5dcf9227b273ee499c66 (patch) | |
tree | 12a620a7f4bf2e7380e4cfcd6265e450d395ae62 /Doc | |
parent | 5577892ca9b77968be8e47736f98c65239e7de70 (diff) | |
download | cpython-5a7a52fbb0d8097e0e0e5dcf9227b273ee499c66.zip cpython-5a7a52fbb0d8097e0e0e5dcf9227b273ee499c66.tar.gz cpython-5a7a52fbb0d8097e0e0e5dcf9227b273ee499c66.tar.bz2 |
#9582 - add a missing "are" and reflow the line.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/faq/programming.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst index 4113664..dff6074 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? |