summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMariatta <Mariatta@users.noreply.github.com>2017-02-26 15:44:36 (GMT)
committerGitHub <noreply@github.com>2017-02-26 15:44:36 (GMT)
commit21c697fd1073d6ab59e2ba82ea80bc81b9c4125c (patch)
tree1d7c9c10bcd604a692446c46a4bddba9e149c232
parent63ed9bc94d8df45b16aee9b92f658ebb34aa1012 (diff)
downloadcpython-21c697fd1073d6ab59e2ba82ea80bc81b9c4125c.zip
cpython-21c697fd1073d6ab59e2ba82ea80bc81b9c4125c.tar.gz
cpython-21c697fd1073d6ab59e2ba82ea80bc81b9c4125c.tar.bz2
bpo-22594: Add a link to the regex module in re documentation (GH-241) (GH-317)
(cherry picked from commit ed6795e46f7653e23b862efad240a93453e7df97)
-rw-r--r--Doc/library/re.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/re.rst b/Doc/library/re.rst
index 1ca621e..6baac6f 100644
--- a/Doc/library/re.rst
+++ b/Doc/library/re.rst
@@ -42,6 +42,12 @@ module-level functions and methods on
that don't require you to compile a regex object first, but miss some
fine-tuning parameters.
+.. seealso::
+
+ The third-party `regex <https://pypi.python.org/pypi/regex/>`_ module,
+ which has an API compatible with the standard library :mod:`re` module,
+ but offers additional functionality and a more thorough Unicode support.
+
.. _re-syntax: