Typo fix; constant name is uppercase

This commit is contained in:
Andrew M. Kuchling 2009-06-01 00:11:36 +00:00
parent 751771b0d0
commit 1c50e86d86
1 changed files with 1 additions and 1 deletions

View File

@ -215,7 +215,7 @@ The special characters are:
``(?aiLmsux)``
(One or more letters from the set ``'a'``, ``'i'``, ``'L'``, ``'m'``,
``'s'``, ``'u'``, ``'x'``.) The group matches the empty string; the
letters set the corresponding flags: :const:`re.a` (ASCII-only matching),
letters set the corresponding flags: :const:`re.A` (ASCII-only matching),
:const:`re.I` (ignore case), :const:`re.L` (locale dependent),
:const:`re.M` (multi-line), :const:`re.S` (dot matches all),
and :const:`re.X` (verbose), for the entire regular expression. (The