From: Andrew M. Kuchling Date: Mon, 1 Jun 2009 00:11:36 +0000 (+0000) Subject: Typo fix; constant name is uppercase X-Git-Tag: v3.1rc2~112 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1c50e86d86a156e177878855f32b8cd4b01de719;p=thirdparty%2FPython%2Fcpython.git Typo fix; constant name is uppercase --- diff --git a/Doc/library/re.rst b/Doc/library/re.rst index 1259b11a28db..e50a8ddd3d23 100644 --- a/Doc/library/re.rst +++ b/Doc/library/re.rst @@ -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