diff options
author | Fred Drake <fdrake@acm.org> | 2002-09-24 21:08:37 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2002-09-24 21:08:37 (GMT) |
commit | 3e930ba55fef01463808ee05b7344297ea47d714 (patch) | |
tree | 0b6af629f6fbf7280e862ba0a444e2c56ef1d571 /Doc/lib/libfuncs.tex | |
parent | d8ce87ad84d748fb648b874d7dd9d9a3a835ec3d (diff) | |
download | cpython-3e930ba55fef01463808ee05b7344297ea47d714.zip cpython-3e930ba55fef01463808ee05b7344297ea47d714.tar.gz cpython-3e930ba55fef01463808ee05b7344297ea47d714.tar.bz2 |
Another try at clarifying what goes into and comes out of Unicode objects.
Diffstat (limited to 'Doc/lib/libfuncs.tex')
-rw-r--r-- | Doc/lib/libfuncs.tex | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Doc/lib/libfuncs.tex b/Doc/lib/libfuncs.tex index 491e0fe..4a0efdb 100644 --- a/Doc/lib/libfuncs.tex +++ b/Doc/lib/libfuncs.tex @@ -568,10 +568,6 @@ def my_import(name): \begin{funcdesc}{len}{s} Return the length (the number of items) of an object. The argument may be a sequence (string, tuple or list) or a mapping (dictionary). - In the case of Unicode strings, \function{len()} returns the number - of storage units, not abstract characters. In particular, when a - surrogate pair is encountered, each component of the pair is counted - as a separate character. \end{funcdesc} \begin{funcdesc}{list}{\optional{sequence}} |