diff options
author | Fred Drake <fdrake@acm.org> | 2001-07-20 15:33:23 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-07-20 15:33:23 (GMT) |
commit | 9079164bdfb71c820c0216d37686960aa226c82b (patch) | |
tree | 21978c11faf5089288c3284a386e9511748c6af6 | |
parent | 27451d0fc8924bf2bd9750ff82fff169e3ee2308 (diff) | |
download | cpython-9079164bdfb71c820c0216d37686960aa226c82b.zip cpython-9079164bdfb71c820c0216d37686960aa226c82b.tar.gz cpython-9079164bdfb71c820c0216d37686960aa226c82b.tar.bz2 |
Removed unnecessary section "Unicode literals"; all the discussion is
already present in the "String literals" section, including comments on
the "u" prefix and the additional escape sequences used for Unicode.
This relates to SF bug #442526.
-rw-r--r-- | Doc/ref/ref2.tex | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/Doc/ref/ref2.tex b/Doc/ref/ref2.tex index e912242..02c05cd 100644 --- a/Doc/ref/ref2.tex +++ b/Doc/ref/ref2.tex @@ -355,7 +355,7 @@ that three unescaped quotes in a row terminate the string. (A Unless an `r' or `R' prefix is present, escape sequences in strings are interpreted according to rules similar -to those used by Standard \C{}. The recognized escape sequences are: +to those used by Standard C. The recognized escape sequences are: \index{physical line} \index{escape sequence} \index{Standard C} @@ -434,11 +434,6 @@ concatenation can use different quoting styles for each component (even mixing raw strings and triple quoted strings). -\subsection{Unicode literals \label{unicode}} - -XXX explain more here... - - \subsection{Numeric literals\label{numbers}} There are four types of numeric literals: plain integers, long |