]> granicus.if.org Git - python/commitdiff
Remove more commented-out text that is no longer needed.
authorGuido van Rossum <guido@python.org>
Mon, 29 Dec 1997 21:43:04 +0000 (21:43 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 29 Dec 1997 21:43:04 +0000 (21:43 +0000)
Doc/lib/libre.tex
Doc/libre.tex

index 3b32e63837c01b20ece6a55890ba99e2c06afd81..6791be79bdba5629b68584ea0e7a7b2fbb427442 100644 (file)
@@ -24,27 +24,6 @@ character string containing a backslash and the letter 'n', while
 \code{"\e n"} is a one-character string containing a newline.  Usually
 patterns will be expressed in Python code using this raw string notation.
 
-% XXX Can the following section be dropped, or should it be boiled down?
-
-%\strong{Please note:} There is a little-known fact about Python string
-%literals which means that you don't usually have to worry about
-%doubling backslashes, even though they are used to escape special
-%characters in string literals as well as in regular expressions.  This
-%is because Python doesn't remove backslashes from string literals if
-%they are followed by an unrecognized escape character.
-%\emph{However}, if you want to include a literal \dfn{backslash} in a
-%regular expression represented as a string literal, you have to
-%\emph{quadruple} it or enclose it in a singleton character class.
-%E.g.\  to extract \LaTeX\ \code{\e section\{{\rm
-%\ldots}\}} headers from a document, you can use this pattern:
-%\code{'[\e ] section\{\e (.*\e )\}'}.  \emph{Another exception:}
-%the escape sequence \code{\e b} is significant in string literals
-%(where it means the ASCII bell character) as well as in Emacs regular
-%expressions (where it stands for a word boundary), so in order to
-%search for a word boundary, you should use the pattern \code{'\e \e b'}.
-%Similarly, a backslash followed by a digit 0-7 should be doubled to
-%avoid interpretation as an octal escape.
-
 \subsection{Regular Expression Syntax}
 
 A regular expression (or RE) specifies a set of strings that matches
index 3b32e63837c01b20ece6a55890ba99e2c06afd81..6791be79bdba5629b68584ea0e7a7b2fbb427442 100644 (file)
@@ -24,27 +24,6 @@ character string containing a backslash and the letter 'n', while
 \code{"\e n"} is a one-character string containing a newline.  Usually
 patterns will be expressed in Python code using this raw string notation.
 
-% XXX Can the following section be dropped, or should it be boiled down?
-
-%\strong{Please note:} There is a little-known fact about Python string
-%literals which means that you don't usually have to worry about
-%doubling backslashes, even though they are used to escape special
-%characters in string literals as well as in regular expressions.  This
-%is because Python doesn't remove backslashes from string literals if
-%they are followed by an unrecognized escape character.
-%\emph{However}, if you want to include a literal \dfn{backslash} in a
-%regular expression represented as a string literal, you have to
-%\emph{quadruple} it or enclose it in a singleton character class.
-%E.g.\  to extract \LaTeX\ \code{\e section\{{\rm
-%\ldots}\}} headers from a document, you can use this pattern:
-%\code{'[\e ] section\{\e (.*\e )\}'}.  \emph{Another exception:}
-%the escape sequence \code{\e b} is significant in string literals
-%(where it means the ASCII bell character) as well as in Emacs regular
-%expressions (where it stands for a word boundary), so in order to
-%search for a word boundary, you should use the pattern \code{'\e \e b'}.
-%Similarly, a backslash followed by a digit 0-7 should be doubled to
-%avoid interpretation as an octal escape.
-
 \subsection{Regular Expression Syntax}
 
 A regular expression (or RE) specifies a set of strings that matches