From cbbc74dc81a61132729a91c7b8da2ba0af26aa23 Mon Sep 17 00:00:00 2001 From: Marco Buttu Date: Sun, 26 Feb 2017 16:26:23 +0100 Subject: [PATCH] bpo-22594: Add a link to the regex module in re documentation (GH-241) (cherry picked from commit ed6795e46f7653e23b862efad240a93453e7df97) --- Doc/library/re.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Doc/library/re.rst b/Doc/library/re.rst index 7b76d0c47d2e7e..ddf509bb7d966b 100644 --- a/Doc/library/re.rst +++ b/Doc/library/re.rst @@ -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 `_ 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: