diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2007-08-14 09:23:10 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2007-08-14 09:23:10 (GMT) |
commit | 967f1e3b85ac239d6ae9900a62304392682131a7 (patch) | |
tree | 8e39c3f8fa0612742e71b1ac580c2729cf928195 /Doc/lib | |
parent | 5424df2f7ee8cc0e8d177f0c035120a24addd455 (diff) | |
download | cpython-967f1e3b85ac239d6ae9900a62304392682131a7.zip cpython-967f1e3b85ac239d6ae9900a62304392682131a7.tar.gz cpython-967f1e3b85ac239d6ae9900a62304392682131a7.tar.bz2 |
Remove string.{letters,lowercase,uppercase}.
Diffstat (limited to 'Doc/lib')
-rw-r--r-- | Doc/lib/libstring.tex | 33 |
1 files changed, 3 insertions, 30 deletions
diff --git a/Doc/lib/libstring.tex b/Doc/lib/libstring.tex index 055ac0c..9948cb7 100644 --- a/Doc/lib/libstring.tex +++ b/Doc/lib/libstring.tex @@ -13,18 +13,18 @@ functions based on regular expressions. The constants defined in this module are: -\begin{datadesc}{ascii_letters} +\begin{datadesc}{ascii\_letters} The concatenation of the \constant{ascii_lowercase} and \constant{ascii_uppercase} constants described below. This value is not locale-dependent. \end{datadesc} -\begin{datadesc}{ascii_lowercase} +\begin{datadesc}{ascii\_lowercase} The lowercase letters \code{'abcdefghijklmnopqrstuvwxyz'}. This value is not locale-dependent and will not change. \end{datadesc} -\begin{datadesc}{ascii_uppercase} +\begin{datadesc}{ascii\_uppercase} The uppercase letters \code{'ABCDEFGHIJKLMNOPQRSTUVWXYZ'}. This value is not locale-dependent and will not change. \end{datadesc} @@ -37,23 +37,6 @@ The constants defined in this module are: The string \code{'0123456789abcdefABCDEF'}. \end{datadesc} -\begin{datadesc}{letters} - The concatenation of the strings \constant{lowercase} and - \constant{uppercase} described below. The specific value is - locale-dependent, and will be updated when - \function{locale.setlocale()} is called. -\end{datadesc} - -\begin{datadesc}{lowercase} - A string containing all the characters that are considered lowercase - letters. On most systems this is the string - \code{'abcdefghijklmnopqrstuvwxyz'}. Do not change its definition --- - the effect on the routines \function{upper()} and - \function{swapcase()} is undefined. The specific value is - locale-dependent, and will be updated when - \function{locale.setlocale()} is called. -\end{datadesc} - \begin{datadesc}{octdigits} The string \code{'01234567'}. \end{datadesc} @@ -69,16 +52,6 @@ The constants defined in this module are: \constant{punctuation}, and \constant{whitespace}. \end{datadesc} -\begin{datadesc}{uppercase} - A string containing all the characters that are considered uppercase - letters. On most systems this is the string - \code{'ABCDEFGHIJKLMNOPQRSTUVWXYZ'}. Do not change its definition --- - the effect on the routines \function{lower()} and - \function{swapcase()} is undefined. The specific value is - locale-dependent, and will be updated when - \function{locale.setlocale()} is called. -\end{datadesc} - \begin{datadesc}{whitespace} A string containing all characters that are considered whitespace. On most systems this includes the characters space, tab, linefeed, |