summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Smith <eric@trueblade.com>2010-05-09 14:07:57 (GMT)
committerEric Smith <eric@trueblade.com>2010-05-09 14:07:57 (GMT)
commitba32864b2d97018c71ce90926c853a67e79becf7 (patch)
tree66bb9d09fdd84fb0c8e3c3ee61208c04fdd00cf7
parent0819b092d65315559d28c0c9774113bbb663af4a (diff)
downloadcpython-ba32864b2d97018c71ce90926c853a67e79becf7.zip
cpython-ba32864b2d97018c71ce90926c853a67e79becf7.tar.gz
cpython-ba32864b2d97018c71ce90926c853a67e79becf7.tar.bz2
Merged revisions 81026 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r81026 | eric.smith | 2010-05-09 10:04:59 -0400 (Sun, 09 May 2010) | 1 line Issue 8671: Whitespace fix. ........
-rw-r--r--Doc/library/re.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/re.rst b/Doc/library/re.rst
index 92f132b..c613a41 100644
--- a/Doc/library/re.rst
+++ b/Doc/library/re.rst
@@ -319,7 +319,7 @@ the second character. For example, ``\$`` matches the character ``'$'``.
Matches the empty string, but only at the beginning or end of a word. A word is
defined as a sequence of alphanumeric or underscore characters, so the end of a
word is indicated by whitespace or a non-alphanumeric, non-underscore character.
- Note that ``\b`` is defined as the boundary between ``\w`` and ``\ W``, so the
+ Note that ``\b`` is defined as the boundary between ``\w`` and ``\W``, so the
precise set of characters deemed to be alphanumeric depends on the values of the
``UNICODE`` and ``LOCALE`` flags. Inside a character range, ``\b`` represents
the backspace character, for compatibility with Python's string literals.