diff options
author | Mariatta <Mariatta@users.noreply.github.com> | 2017-02-26 15:44:16 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-26 15:44:16 (GMT) |
commit | 1457984c003b1e461f8aab93bfc37fd8e42312d5 (patch) | |
tree | 470f01899e078fb1de1b5582ed9fd8d2006e0f3f | |
parent | 7333d1760e12cf27bcf63265f72521892285c10a (diff) | |
download | cpython-1457984c003b1e461f8aab93bfc37fd8e42312d5.zip cpython-1457984c003b1e461f8aab93bfc37fd8e42312d5.tar.gz cpython-1457984c003b1e461f8aab93bfc37fd8e42312d5.tar.bz2 |
bpo-22594: Add a link to the regex module in re documentation (GH-241) (GH-316)
(cherry picked from commit ed6795e46f7653e23b862efad240a93453e7df97)
-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 fe5ebcc..9cced51 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: |