diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-01-15 01:18:21 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-01-15 01:18:21 (GMT) |
commit | 0c9886d589ddebf32de0ca3f027a173222ed383a (patch) | |
tree | 8d18864b0026ee37a1e917bbb0ff93a1bebda309 /Lib/regex_syntax.py | |
parent | 2344fae6d003f5a5dde8016e1d2310e161288708 (diff) | |
download | cpython-0c9886d589ddebf32de0ca3f027a173222ed383a.zip cpython-0c9886d589ddebf32de0ca3f027a173222ed383a.tar.gz cpython-0c9886d589ddebf32de0ca3f027a173222ed383a.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/regex_syntax.py')
-rw-r--r-- | Lib/regex_syntax.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/regex_syntax.py b/Lib/regex_syntax.py index aab7e7a..b0a0dbf 100644 --- a/Lib/regex_syntax.py +++ b/Lib/regex_syntax.py @@ -33,9 +33,9 @@ RE_NEWLINE_OR = 16 # their special meaning regardless of the surrounding context. # 1 means that special characters may act as normal characters in some # contexts. Specifically, this applies to: -# ^ - only special at the beginning, or after ( or | -# $ - only special at the end, or before ) or | -# *, +, ? - only special when not after the beginning, (, or | +# ^ - only special at the beginning, or after ( or | +# $ - only special at the end, or before ) or | +# *, +, ? - only special when not after the beginning, (, or | RE_CONTEXT_INDEP_OPS = 32 # ANSI sequences (\n etc) and \xhh |