Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix grammar, spotted by Hye-Shik Chang | Neal Norwitz | 2004-08-20 | 1 | -1/+1 |
| | |||||
* | Try to improve grammar and use versionadded | Neal Norwitz | 2004-08-20 | 1 | -1/+2 |
| | |||||
* | SF #989185: Drop unicode.iswide() and unicode.width() and add | Hye-Shik Chang | 2004-08-04 | 1 | -1/+6 |
| | | | | | | | | | | | | 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 | ||||
* | Add unidata_version. Bump generator version number. | Martin v. Löwis | 2002-11-25 | 1 | -0/+7 |
| | |||||
* | Patch #626485: Support Unicode normalization. | Martin v. Löwis | 2002-11-23 | 1 | -3/+37 |
| | |||||
* | new unicodedata functions (name, lookup) | Fredrik Lundh | 2001-01-24 | 1 | -0/+13 |
| | |||||
* | Update URL to unicode.org's FTP site using an HTTP URL to the same | Fred Drake | 2000-09-16 | 1 | -1/+1 |
| | | | | document. | ||||
* | Marc-Andre Lemburg <mal@lemburg.com>: | Fred Drake | 2000-06-13 | 1 | -0/+72 |
Documentation for the unicodedata module (massaged by Fred for minor consistency issues). |