From: Ezio Melotti Date: Thu, 19 Jun 2014 21:52:11 +0000 (+0300) Subject: #21690: fix a couple of links in the docs of the re module. Noticed by Julian Gilbey. X-Git-Tag: v3.4.2rc1~355 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=642d4b654f920f88c9dba1aedfe1fdd98bd0a0c1;p=python #21690: fix a couple of links in the docs of the re module. Noticed by Julian Gilbey. --- diff --git a/Doc/library/re.rst b/Doc/library/re.rst index 7679bc243c..451ee2d2a3 100644 --- a/Doc/library/re.rst +++ b/Doc/library/re.rst @@ -458,8 +458,8 @@ form. .. function:: compile(pattern, flags=0) Compile a regular expression pattern into a regular expression object, which - can be used for matching using its :func:`match` and :func:`search` methods, - described below. + can be used for matching using its :func:`~regex.match` and + :func:`~regex.search` methods, described below. The expression's behaviour can be modified by specifying a *flags* value. Values can be any of the following variables, combined using bitwise OR (the