summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libunicodedata.tex
diff options
context:
space:
mode:
authorHye-Shik Chang <hyeshik@gmail.com>2004-08-04 07:38:35 (GMT)
committerHye-Shik Chang <hyeshik@gmail.com>2004-08-04 07:38:35 (GMT)
commite9ddfbb41207328d5c89061067f3431e00711fda (patch)
tree54093161fe6808de7d6fcc3304eb32241231f010 /Doc/lib/libunicodedata.tex
parentb5047fd01948ab108edcc1b3c2c901d915814cfd (diff)
downloadcpython-e9ddfbb41207328d5c89061067f3431e00711fda.zip
cpython-e9ddfbb41207328d5c89061067f3431e00711fda.tar.gz
cpython-e9ddfbb41207328d5c89061067f3431e00711fda.tar.bz2
SF #989185: Drop unicode.iswide() and unicode.width() and add
unicodedata.east_asian_width(). You can still implement your own simple width() function using it like this: def width(u): w = 0 for c in unicodedata.normalize('NFC', u): cwidth = unicodedata.east_asian_width(c) if cwidth in ('W', 'F'): w += 2 else: w += 1 return w
Diffstat (limited to 'Doc/lib/libunicodedata.tex')
-rw-r--r--Doc/lib/libunicodedata.tex7
1 files changed, 6 insertions, 1 deletions
diff --git a/Doc/lib/libunicodedata.tex b/Doc/lib/libunicodedata.tex
index a6d9d43..2922913 100644
--- a/Doc/lib/libunicodedata.tex
+++ b/Doc/lib/libunicodedata.tex
@@ -71,6 +71,11 @@ defines the following functions:
class is defined.
\end{funcdesc}
+\begin{funcdesc}{east_asian_width}{unichr}
+ Returns the east asian width of assigned to the Unicode character
+ \var{unichr} as string.
+\end{funcdesc}
+
\begin{funcdesc}{mirrored}{unichr}
Returns the mirrored property of assigned to the Unicode character
\var{unichr} as integer. Returns \code{1} if the character has been
@@ -123,4 +128,4 @@ In addition, the module exposes the following constant:
The version of the Unicode database used in this module.
\versionadded{2.3}
-\end{datadesc} \ No newline at end of file
+\end{datadesc}