summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libunicodedata.tex
Commit message (Collapse)AuthorAgeFilesLines
* Avoid forward-declaring the methods array.Martin v. Löwis2006-03-101-1/+1
| | | | Rename unicodedata.db* to unicodedata.ucd*
* Update Unicode database to Unicode 4.1.Martin v. Löwis2006-03-091-3/+12
|
* Correct URL to the official UnicodeData 3.2.0 resource. (ReportedHye-Shik Chang2005-06-041-1/+1
| | | | by Darek Suchojad)
* Fix grammar, spotted by Hye-Shik ChangNeal Norwitz2004-08-201-1/+1
|
* Try to improve grammar and use versionaddedNeal Norwitz2004-08-201-1/+2
|
* SF #989185: Drop unicode.iswide() and unicode.width() and addHye-Shik Chang2004-08-041-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öwis2002-11-251-0/+7
|
* Patch #626485: Support Unicode normalization.Martin v. Löwis2002-11-231-3/+37
|
* new unicodedata functions (name, lookup)Fredrik Lundh2001-01-241-0/+13
|
* Update URL to unicode.org's FTP site using an HTTP URL to the sameFred Drake2000-09-161-1/+1
| | | | document.
* Marc-Andre Lemburg <mal@lemburg.com>:Fred Drake2000-06-131-0/+72
Documentation for the unicodedata module (massaged by Fred for minor consistency issues).