[Python-checkins] r81027 - in python/branches/release26-maint: Doc/library/re.rst (original) (raw)
eric.smith python-checkins at python.org
Sun May 9 16:07:57 CEST 2010
- Previous message: [Python-checkins] r81026 - python/trunk/Doc/library/re.rst
- Next message: [Python-checkins] r81028 - python/branches/py3k
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Author: eric.smith Date: Sun May 9 16:07:57 2010 New Revision: 81027
Log: 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. ........
Modified: python/branches/release26-maint/ (props changed) python/branches/release26-maint/Doc/library/re.rst
Modified: python/branches/release26-maint/Doc/library/re.rst
--- python/branches/release26-maint/Doc/library/re.rst (original) +++ python/branches/release26-maint/Doc/library/re.rst Sun May 9 16:07:57 2010 @@ -319,7 +319,7 @@ 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 theUNICODE
andLOCALE
flags. Inside a character range,\b
represents the backspace character, for compatibility with Python's string literals.
- Previous message: [Python-checkins] r81026 - python/trunk/Doc/library/re.rst
- Next message: [Python-checkins] r81028 - python/branches/py3k
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]