• Hye-Shik Chang's avatar
    SF #989185: Drop unicode.iswide() and unicode.width() and add · e9ddfbb4
    Hye-Shik Chang yazdı
    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
    e9ddfbb4
Adı
Son kayıt (commit)
Son güncelleme
..
audiopy Loading commit data...
bgen Loading commit data...
compiler Loading commit data...
faqwiz Loading commit data...
framer Loading commit data...
freeze Loading commit data...
i18n Loading commit data...
modulator Loading commit data...
pynche Loading commit data...
scripts Loading commit data...
unicode Loading commit data...
versioncheck Loading commit data...
webchecker Loading commit data...
world Loading commit data...
README Loading commit data...