summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-08-11 00:31:57 (GMT)
committerGuido van Rossum <guido@python.org>1995-08-11 00:31:57 (GMT)
commitfe4254eb08eb1bc15b2fd46b517119cf9498046a (patch)
tree9f2f16b7c2021b07294b03862b26e218996e7749 /Doc
parent9c3241d6d063e7e91f2c2fbfaeb235916c9bd704 (diff)
downloadcpython-fe4254eb08eb1bc15b2fd46b517119cf9498046a.zip
cpython-fe4254eb08eb1bc15b2fd46b517119cf9498046a.tar.gz
cpython-fe4254eb08eb1bc15b2fd46b517119cf9498046a.tar.bz2
warn about bacslash-s lacking
Diffstat (limited to 'Doc')
-rw-r--r--Doc/lib/libregex.tex7
-rw-r--r--Doc/libregex.tex7
2 files changed, 10 insertions, 4 deletions
diff --git a/Doc/lib/libregex.tex b/Doc/lib/libregex.tex
index 1b18679..4c98e59 100644
--- a/Doc/lib/libregex.tex
+++ b/Doc/lib/libregex.tex
@@ -4,9 +4,12 @@
This module provides regular expression matching operations similar to
those found in Emacs. It is always available.
-By default the patterns are Emacs-style regular expressions; there is
+By default the patterns are Emacs-style regular expressions,
+with one exception. There is
a way to change the syntax to match that of several well-known
-\UNIX{} utilities.
+\UNIX{} utilities. The exception is that Emacs' \samp{\e s}
+pattern is not supported, since the original implementation references
+the Emacs syntax tables.
This module is 8-bit clean: both patterns and strings may contain null
bytes and characters whose high bit is set.
diff --git a/Doc/libregex.tex b/Doc/libregex.tex
index 1b18679..4c98e59 100644
--- a/Doc/libregex.tex
+++ b/Doc/libregex.tex
@@ -4,9 +4,12 @@
This module provides regular expression matching operations similar to
those found in Emacs. It is always available.
-By default the patterns are Emacs-style regular expressions; there is
+By default the patterns are Emacs-style regular expressions,
+with one exception. There is
a way to change the syntax to match that of several well-known
-\UNIX{} utilities.
+\UNIX{} utilities. The exception is that Emacs' \samp{\e s}
+pattern is not supported, since the original implementation references
+the Emacs syntax tables.
This module is 8-bit clean: both patterns and strings may contain null
bytes and characters whose high bit is set.