diff options
author | Mariatta <Mariatta@users.noreply.github.com> | 2017-02-26 16:56:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-26 16:56:21 (GMT) |
commit | c8e20218d77c5b8c16fd76d45612ae48ca3fba91 (patch) | |
tree | 214709f326a39b616c008588f7e839ea97bbbfa3 /Doc | |
parent | 6e9e6496ef4ed916edbb81407a0ae76b013f2fe5 (diff) | |
download | cpython-c8e20218d77c5b8c16fd76d45612ae48ca3fba91.zip cpython-c8e20218d77c5b8c16fd76d45612ae48ca3fba91.tar.gz cpython-c8e20218d77c5b8c16fd76d45612ae48ca3fba91.tar.bz2 |
bpo-22594: Add a link to the regex module in re documentation (GH-241) (GH-321)
(cherry picked from commit ed6795e46f7653e23b862efad240a93453e7df97)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/re.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/re.rst b/Doc/library/re.rst index 7b76d0c..ddf509b 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 <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: |