summaryrefslogtreecommitdiffstats
path: root/Doc/ref2.tex
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-03-15 11:25:32 (GMT)
committerGuido van Rossum <guido@python.org>1995-03-15 11:25:32 (GMT)
commit47b4c0fb35a5c0092fc82ece96fcb1a79dd2285d (patch)
treed9fec38185adbf8f70fda937f85610cd453e6295 /Doc/ref2.tex
parent9b623b3d6329425daa4cb389546eb23a32354b52 (diff)
downloadcpython-47b4c0fb35a5c0092fc82ece96fcb1a79dd2285d.zip
cpython-47b4c0fb35a5c0092fc82ece96fcb1a79dd2285d.tar.gz
cpython-47b4c0fb35a5c0092fc82ece96fcb1a79dd2285d.tar.bz2
replace ASCII by macro call
Diffstat (limited to 'Doc/ref2.tex')
-rw-r--r--Doc/ref2.tex22
1 files changed, 11 insertions, 11 deletions
diff --git a/Doc/ref2.tex b/Doc/ref2.tex
index c08f829..b9593b8 100644
--- a/Doc/ref2.tex
+++ b/Doc/ref2.tex
@@ -233,16 +233,16 @@ to those used by Standard C. The recognized escape sequences are:
\verb/\\/ & Backslash (\verb/\/) \\
\verb/\'/ & Single quote (\verb/'/) \\
\verb/\"/ & Double quote (\verb/"/) \\
-\verb/\a/ & ASCII Bell (BEL) \\
-\verb/\b/ & ASCII Backspace (BS) \\
-%\verb/\E/ & ASCII Escape (ESC) \\
-\verb/\f/ & ASCII Formfeed (FF) \\
-\verb/\n/ & ASCII Linefeed (LF) \\
-\verb/\r/ & ASCII Carriage Return (CR) \\
-\verb/\t/ & ASCII Horizontal Tab (TAB) \\
-\verb/\v/ & ASCII Vertical Tab (VT) \\
-\verb/\/{\em ooo} & ASCII character with octal value {\em ooo} \\
-\verb/\x/{\em xx...} & ASCII character with hex value {\em xx...} \\
+\verb/\a/ & \ASCII{} Bell (BEL) \\
+\verb/\b/ & \ASCII{} Backspace (BS) \\
+%\verb/\E/ & \ASCII{} Escape (ESC) \\
+\verb/\f/ & \ASCII{} Formfeed (FF) \\
+\verb/\n/ & \ASCII{} Linefeed (LF) \\
+\verb/\r/ & \ASCII{} Carriage Return (CR) \\
+\verb/\t/ & \ASCII{} Horizontal Tab (TAB) \\
+\verb/\v/ & \ASCII{} Vertical Tab (VT) \\
+\verb/\/{\em ooo} & \ASCII{} character with octal value {\em ooo} \\
+\verb/\x/{\em xx...} & \ASCII{} character with hex value {\em xx...} \\
\hline
\end{tabular}
\end{center}
@@ -358,7 +358,7 @@ meaning:
= ;
\end{verbatim}
-The following printing ASCII characters are not used in Python. Their
+The following printing \ASCII{} characters are not used in Python. Their
occurrence outside string literals and comments is an unconditional
error:
\index{ASCII}