]> granicus.if.org Git - python/commitdiff
bpo-22594: Add a link to the regex module in re documentation (GH-241) (GH-321)
authorMariatta <Mariatta@users.noreply.github.com>
Sun, 26 Feb 2017 16:56:21 +0000 (08:56 -0800)
committerGitHub <noreply@github.com>
Sun, 26 Feb 2017 16:56:21 +0000 (08:56 -0800)
(cherry picked from commit ed6795e46f7653e23b862efad240a93453e7df97)

Doc/library/re.rst

index 7b76d0c47d2e7ec453c036311261143e5391623d..ddf509bb7d966b16a42c2a97b2fa9269db65cbd7 100644 (file)
@@ -33,6 +33,12 @@ module-level functions and :class:`RegexObject` methods.  The functions are
 shortcuts 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: