Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Avoid forward-declaring the methods array. | Martin v. Löwis | 2006-03-10 | 1 | -1/+1 |
| | | | | Rename unicodedata.db* to unicodedata.ucd* | ||||
* | Update Unicode database to Unicode 4.1. | Martin v. Löwis | 2006-03-09 | 1 | -3/+12 |
| | |||||
* | Correct URL to the official UnicodeData 3.2.0 resource. (Reported | Hye-Shik Chang | 2005-06-04 | 1 | -1/+1 |
| | | | | by Darek Suchojad) | ||||
* | 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). |