Files
cpython/Include
Hye-Shik Chang e9ddfbb412 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
2004-08-04 07:38:35 +00:00
..
2002-08-12 07:21:58 +00:00
2002-08-12 07:21:58 +00:00
2003-04-08 18:47:21 +00:00
2002-08-12 07:21:58 +00:00
2002-08-12 07:21:58 +00:00
2004-08-01 22:45:27 +00:00
2002-08-12 07:21:58 +00:00
2002-08-12 07:21:58 +00:00
2004-08-03 15:57:39 +00:00
2002-08-12 07:21:58 +00:00
2002-11-23 09:13:40 +00:00
2004-07-27 15:57:24 +00:00
2002-08-12 07:21:58 +00:00
2002-08-12 07:21:58 +00:00