[Python-checkins] r73088 - python/branches/py3k/Doc/library/re.rst

andrew.kuchling python-checkins at python.org
Mon Jun 1 02:11:36 CEST 2009


Author: andrew.kuchling
Date: Mon Jun  1 02:11:36 2009
New Revision: 73088

Log:
Typo fix; constant name is uppercase

Modified:
   python/branches/py3k/Doc/library/re.rst

Modified: python/branches/py3k/Doc/library/re.rst
==============================================================================
--- python/branches/py3k/Doc/library/re.rst	(original)
+++ python/branches/py3k/Doc/library/re.rst	Mon Jun  1 02:11:36 2009
@@ -215,7 +215,7 @@
 ``(?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


More information about the Python-checkins mailing list