Changeset 391 for python/trunk/Doc/library/unicodedata.rst
- Timestamp:
- Mar 19, 2014, 11:31:01 PM (11 years ago)
- Location:
- python/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk
-
Property svn:mergeinfo
set to
/python/vendor/Python-2.7.6 merged eligible /python/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
python/trunk/Doc/library/unicodedata.rst
r2 r391 17 17 This module provides access to the Unicode Character Database which defines 18 18 character properties for all Unicode characters. The data in this database is 19 based on the :file:`UnicodeData.txt` file version 5. 1.0 which is publicly19 based on the :file:`UnicodeData.txt` file version 5.2.0 which is publicly 20 20 available from ftp://ftp.unicode.org/. 21 21 22 22 The module uses the same names and symbols as defined by the UnicodeData File 23 Format 5. 1.0 (see http://www.unicode.org/Public/5.1.0/ucd/UCD.html). It defines24 the following functions:23 Format 5.2.0 (see http://www.unicode.org/reports/tr44/tr44-4.html). 24 It defines the following functions: 25 25 26 26 … … 67 67 .. function:: bidirectional(unichr) 68 68 69 Returns the bidirectional c ategoryassigned to the Unicode character *unichr* as69 Returns the bidirectional class assigned to the Unicode character *unichr* as 70 70 string. If no such value is defined, an empty string is returned. 71 71 … … 108 108 In Unicode, several characters can be expressed in various way. For example, the 109 109 character U+00C7 (LATIN CAPITAL LETTER C WITH CEDILLA) can also be expressed as 110 the sequence U+0 327 (COMBINING CEDILLA) U+0043 (LATIN CAPITAL LETTER C).110 the sequence U+0043 (LATIN CAPITAL LETTER C) U+0327 (COMBINING CEDILLA). 111 111 112 112 For each character, there are two normal forms: normal form C and normal form D.
Note:
See TracChangeset
for help on using the changeset viewer.