Kaydet (Commit) a3eebe60 authored tarafından Guido van Rossum's avatar Guido van Rossum

Add warning about use of lowercase/uppercase with maketrans().

üst 08d6be48
......@@ -144,6 +144,11 @@ Return a translation table suitable for passing to
\function{translate()} or \function{regex.compile()}, that will map
each character in \var{from} into the character at the same position
in \var{to}; \var{from} and \var{to} must have the same length.
\strong{Warning:} don't use strings derived from \code{lowercase} and
\code{uppercase} as arguments; in some locales, these don't have the
same length. For case conversions, always use \function{lower()} and
\function{upper()}.
\end{funcdesc}
\begin{funcdesc}{split}{s\optional{, sep\optional{, maxsplit}}}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment