| commit | e9ddfbb41207328d5c89061067f3431e00711fda | [log] [tgz] |
|---|---|---|
| author | Hye-Shik Chang <hyeshik@gmail.com> | Wed Aug 04 07:38:35 2004 +0000 |
| committer | Hye-Shik Chang <hyeshik@gmail.com> | Wed Aug 04 07:38:35 2004 +0000 |
| tree | 54093161fe6808de7d6fcc3304eb32241231f010 | |
| parent | b5047fd01948ab108edcc1b3c2c901d915814cfd [diff] |
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