Skip to content

Commit 8908cee

Browse files
Changes links to UCD 15.0.0
1 parent d866066 commit 8908cee

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Doc/library/unicodedata.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ following functions:
9999
Returns the general category assigned to the character *chr* as
100100
string. General category names consist of two letters.
101101
See the `General Category Values section of the Unicode Character
102-
Database documentation <https://www.unicode.org/reports/tr44/#General_Category_Values>`_
102+
Database documentation <https://www.unicode.org/reports/tr44/tr44-30.html#General_Category_Values>`_
103103
for a list of category codes. For example::
104104

105105
>>> unicodedata.category('A') # 'L'etter, 'u'ppercase
@@ -111,7 +111,7 @@ following functions:
111111
Returns the bidirectional class assigned to the character *chr* as
112112
string. If no such value is defined, an empty string is returned.
113113
See the `Bidirectional Class Values section of the Unicode Character
114-
Database <https://www.unicode.org/reports/tr44/#Bidi_Class_Values>`_
114+
Database <https://www.unicode.org/reports/tr44/tr44-30.html#Bidi_Class_Values>`_
115115
documentation for a list of bidirectional codes. For example::
116116

117117
>>> unicodedata.bidirectional('\N{ARABIC-INDIC DIGIT SEVEN}') # 'A'rabic, 'N'umber
@@ -123,15 +123,15 @@ following functions:
123123
Returns the canonical combining class assigned to the character *chr*
124124
as integer. Returns ``0`` if no combining class is defined.
125125
See the `Canonical Combining Class Values section of the Unicode Character
126-
Database <www.unicode.org/reports/tr44/#Canonical_Combining_Class_Values>`_
126+
Database <www.unicode.org/reports/tr44/tr44-30.html#Canonical_Combining_Class_Values>`_
127127
for more information.
128128

129129

130130
.. function:: east_asian_width(chr)
131131

132132
Returns the east asian width assigned to the character *chr* as
133133
string. For a list of widths and or more information, see the
134-
`Unicode Standard Annex #11 <https://www.unicode.org/reports/tr11/>`_.
134+
`Unicode Standard Annex #11 <https://www.unicode.org/reports/tr11/tr11-41.html>`_.
135135

136136

137137
.. function:: mirrored(chr)

0 commit comments

Comments
 (0)