Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 289f1f8 commit 3aca40dCopy full SHA for 3aca40d
10 files changed
Doc/library/stdtypes.rst
@@ -351,7 +351,7 @@ Notes:
351
The numeric literals accepted include the digits ``0`` to ``9`` or any
352
Unicode equivalent (code points with the ``Nd`` property).
353
354
- See http://www.unicode.org/Public/12.0.0/ucd/extracted/DerivedNumericType.txt
+ See http://www.unicode.org/Public/12.1.0/ucd/extracted/DerivedNumericType.txt
355
for a complete list of code points with the ``Nd`` property.
356
357
Doc/library/unicodedata.rst
@@ -17,8 +17,8 @@
17
18
This module provides access to the Unicode Character Database (UCD) which
19
defines character properties for all Unicode characters. The data contained in
20
-this database is compiled from the `UCD version 12.0.0
21
-<http://www.unicode.org/Public/12.0.0/ucd>`_.
+this database is compiled from the `UCD version 12.1.0
+<http://www.unicode.org/Public/12.1.0/ucd>`_.
22
23
The module uses the same names and symbols as defined by Unicode
24
Standard Annex #44, `"Unicode Character Database"
@@ -175,6 +175,6 @@ Examples:
175
176
.. rubric:: Footnotes
177
178
-.. [#] http://www.unicode.org/Public/12.0.0/ucd/NameAliases.txt
+.. [#] http://www.unicode.org/Public/12.1.0/ucd/NameAliases.txt
179
180
-.. [#] http://www.unicode.org/Public/12.0.0/ucd/NamedSequences.txt
+.. [#] http://www.unicode.org/Public/12.1.0/ucd/NamedSequences.txt
Doc/reference/lexical_analysis.rst
@@ -316,7 +316,7 @@ The Unicode category codes mentioned above stand for:
316
* *Nd* - decimal numbers
317
* *Pc* - connector punctuations
318
* *Other_ID_Start* - explicit list of characters in `PropList.txt
319
- <http://www.unicode.org/Public/12.0.0/ucd/PropList.txt>`_ to support backwards
+ <http://www.unicode.org/Public/12.1.0/ucd/PropList.txt>`_ to support backwards
320
compatibility
321
* *Other_ID_Continue* - likewise
322
Doc/whatsnew/3.8.rst
@@ -510,9 +510,8 @@ Added new clock :data:`~time.CLOCK_UPTIME_RAW` for macOS 10.12.
510
unicodedata
511
-----------
512
513
-* The :mod:`unicodedata` module has been upgraded to use the `Unicode 12.0.0
514
- <http://blog.unicode.org/2019/03/announcing-unicode-standard-version-120.html>`_
515
- release.
+* The :mod:`unicodedata` module has been upgraded to use the `Unicode 12.1.0
+ <http://blog.unicode.org/2019/05/unicode-12-1-en.html>`_ release.
516
517
* New function :func:`~unicodedata.is_normalized` can be used to verify a string
518
is in a specific normal form. (Contributed by Max Belanger and David Euresti in
Lib/test/test_unicodedata.py
@@ -80,7 +80,7 @@ class UnicodeFunctionsTest(UnicodeDatabaseTest):
80
81
# Update this if the database changes. Make sure to do a full rebuild
82
# (e.g. 'make distclean && make') to get the correct checksum.
83
- expectedchecksum = '4cb02a243aed7c251067386dd738189146fddf94'
+ expectedchecksum = 'c44a49ca7c5cb6441640fe174ede604b45028652'
84
def test_function_checksum(self):
85
data = []
86
h = hashlib.sha1()
Misc/NEWS.d/next/Core and Builtins/2019-05-08-20-42-40.bpo-36861.72mvZM.rst
@@ -0,0 +1 @@
1
+Update the Unicode database to version 12.1.0.
Modules/unicodedata_db.h
Modules/unicodename_db.h
Objects/unicodetype_db.h
@@ -2925,7 +2925,7 @@ static const unsigned short index2[] = {
2925
5, 5, 5, 5, 5, 5, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27,
2926
27, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
2927
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
2928
- 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 55, 55, 55, 55, 55,
+ 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 55, 55, 55, 55, 55,
2929
388, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55,
2930
55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55,
2931
Tools/unicode/makeunicodedata.py
@@ -41,7 +41,7 @@
41
# * Doc/library/stdtypes.rst, and
42
# * Doc/library/unicodedata.rst
43
# * Doc/reference/lexical_analysis.rst (two occurrences)
44
-UNIDATA_VERSION = "12.0.0"
+UNIDATA_VERSION = "12.1.0"
45
UNICODE_DATA = "UnicodeData%s.txt"
46
COMPOSITION_EXCLUSIONS = "CompositionExclusions%s.txt"
47
EASTASIAN_WIDTH = "EastAsianWidth%s.txt"
0 commit comments