Doc: Fix missing negation. (GH-14640) (GH-15985)

Reported by Hug Capella on docs@.

Automerge-Triggered-By: @matrixise
(cherry picked from commit 1fae844451)

Co-authored-by: Julien Palard <julien@palard.fr>
This commit is contained in:
Miss Islington (bot) 2019-09-11 10:53:56 -07:00 committed by Stéphane Wirtel
parent e4be7c8ba1
commit bf0c76cdf6
1 changed files with 2 additions and 2 deletions

View File

@ -537,8 +537,8 @@ character ``'$'``.
Matches any character which is not a word character. This is
the opposite of ``\w``. If the :const:`ASCII` flag is used this
becomes the equivalent of ``[^a-zA-Z0-9_]``. If the :const:`LOCALE` flag is
used, matches characters considered alphanumeric in the current locale
and the underscore.
used, matches characters which are neither alphanumeric in the current locale
nor the underscore.
.. index:: single: \Z; in regular expressions