[Python-checkins] cpython (3.1): #11239: add } to list of metacharacters (it is only a metacharacter sometimes, (original) (raw)
georg.brandl python-checkins at python.org
Sun Mar 6 11:10:10 CET 2011
- Previous message: [Python-checkins] cpython (3.1): #11227: use Host header in asyncore example.
- Next message: [Python-checkins] cpython (3.1): #11292: add missing A_REVERSE to curses attribute table.
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
http://hg.python.org/cpython/rev/3ec0a764ab5c changeset: 68288:3ec0a764ab5c branch: 3.1 user: Georg Brandl <georg at python.org> date: Sun Mar 06 11:07:11 2011 +0100 summary: #11239: add } to list of metacharacters (it is only a metacharacter sometimes, ie. when closing a {n,m} group, but so is ].
files: Doc/howto/regex.rst
diff --git a/Doc/howto/regex.rst b/Doc/howto/regex.rst --- a/Doc/howto/regex.rst +++ b/Doc/howto/regex.rst @@ -76,7 +76,7 @@ Here's a complete list of the metacharacters; their meanings will be discussed in the rest of this HOWTO. ::
- . ^ $ * + ? { [ ] \ | ( )
- . ^ $ * + ? { } [ ] \ | ( )
The first metacharacters we'll look at are [
and ]
. They're used for
specifying a character class, which is a set of characters that you wish to
-- Repository URL: http://hg.python.org/cpython
- Previous message: [Python-checkins] cpython (3.1): #11227: use Host header in asyncore example.
- Next message: [Python-checkins] cpython (3.1): #11292: add missing A_REVERSE to curses attribute table.
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]