summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorMarco Buttu <marco.buttu@gmail.com>2017-02-26 15:26:23 (GMT)
committerMariatta <Mariatta@users.noreply.github.com>2017-02-26 15:26:23 (GMT)
commited6795e46f7653e23b862efad240a93453e7df97 (patch)
tree310d87026a28a20f6c28e3438fd1bb468b1a04e5 /Doc
parent4a926caf8e5fd8af771b2c34bfb6e91c732331fe (diff)
downloadcpython-ed6795e46f7653e23b862efad240a93453e7df97.zip
cpython-ed6795e46f7653e23b862efad240a93453e7df97.tar.gz
cpython-ed6795e46f7653e23b862efad240a93453e7df97.tar.bz2
bpo-22594: Add a link to the regex module in re documentation (GH-241)
Diffstat (limited to 'Doc')
-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 6e9343a..323854a 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: