Ignore:
Timestamp:
Mar 19, 2014, 11:31:01 PM (11 years ago)
Author:
dmik
Message:

python: Merge vendor 2.7.6 to trunk.

Location:
python/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • python/trunk

  • python/trunk/Doc/library/unicodedata.rst

    r2 r391  
    1717This module provides access to the Unicode Character Database which defines
    1818character 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 publicly
     19based on the :file:`UnicodeData.txt` file version 5.2.0 which is publicly
    2020available from ftp://ftp.unicode.org/.
    2121
    2222The 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 defines
    24 the following functions:
     23Format 5.2.0 (see http://www.unicode.org/reports/tr44/tr44-4.html).
     24It defines the following functions:
    2525
    2626
     
    6767.. function:: bidirectional(unichr)
    6868
    69    Returns the bidirectional category assigned to the Unicode character *unichr* as
     69   Returns the bidirectional class assigned to the Unicode character *unichr* as
    7070   string. If no such value is defined, an empty string is returned.
    7171
     
    108108   In Unicode, several characters can be expressed in various way. For example, the
    109109   character U+00C7 (LATIN CAPITAL LETTER C WITH CEDILLA) can also be expressed as
    110    the sequence U+0327 (COMBINING CEDILLA) U+0043 (LATIN CAPITAL LETTER C).
     110   the sequence U+0043 (LATIN CAPITAL LETTER C) U+0327 (COMBINING CEDILLA).
    111111
    112112   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.