- 04 Agu, 2004 1 kayıt (commit)
-
-
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
-
- 02 Haz, 2004 1 kayıt (commit)
-
-
Hye-Shik Chang yazdı
iswide() for east asian width manipulation. (Inspired by David Goodger, Reviewed by Martin v. Loewis) - Move _PyUnicode_TypeRecord.flags to the end of the struct so that no padding is added for UCS-4 builds. (Suggested by Martin v. Loewis)
-
- 25 Kas, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 24 Kas, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 18 Eki, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 21 Ock, 2001 1 kayıt (commit)
-
-
Fredrik Lundh yazdı
-
- 03 Kas, 2000 1 kayıt (commit)
-
-
Fredrik Lundh yazdı
ranges) -- but thanks to the 2.0 compression scheme, this doesn't add a single byte to the resulting binaries (!) Closes bug #117524
-
- 25 Eyl, 2000 2 kayıt (commit)
-
-
Fredrik Lundh yazdı
-
Fredrik Lundh yazdı
- use unidb compression for the unicodectype module. smaller, faster, and slightly more portable... (note: this commit doesn't include the unicodectype.c file itself; I'm still waiting for the reviewers...)
-