diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2014-06-19 21:47:11 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2014-06-19 21:47:11 (GMT) |
commit | 33b810d272e6e96d43b1c3d581cb340fbc22d760 (patch) | |
tree | 1ed1a9cf720a2989d3f5fe6978ff9dd0d985cb5f | |
parent | e4cda6ce21dc268e308f0ee95e097f667f680d43 (diff) | |
download | cpython-33b810d272e6e96d43b1c3d581cb340fbc22d760.zip cpython-33b810d272e6e96d43b1c3d581cb340fbc22d760.tar.gz cpython-33b810d272e6e96d43b1c3d581cb340fbc22d760.tar.bz2 |
#21690: fix a couple of links in the docs of the re module. Noticed by Julian Gilbey.
-rw-r--r-- | Doc/library/re.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/re.rst b/Doc/library/re.rst index 52909ad..e5bbd03 100644 --- a/Doc/library/re.rst +++ b/Doc/library/re.rst @@ -433,8 +433,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:`~RegexObject.match` and + :func:`~RegexObject.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 |