mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
fixes gh-109559: Update unicodedata
for Unicode 15.1.0 (GH-109560)
--------- Co-authored-by: Benjamin Peterson <benjamin@python.org>
This commit is contained in:
parent
1293fcc3c6
commit
def828995a
9 changed files with 19551 additions and 19133 deletions
|
@ -1641,7 +1641,7 @@ expression support in the :mod:`re` module).
|
|||
|
||||
The casefolding algorithm is
|
||||
`described in section 3.13 'Default Case Folding' of the Unicode Standard
|
||||
<https://www.unicode.org/versions/Unicode15.0.0/ch03.pdf>`__.
|
||||
<https://www.unicode.org/versions/Unicode15.1.0/ch03.pdf>`__.
|
||||
|
||||
.. versionadded:: 3.3
|
||||
|
||||
|
@ -1805,7 +1805,7 @@ expression support in the :mod:`re` module).
|
|||
property being one of "Lm", "Lt", "Lu", "Ll", or "Lo". Note that this is different
|
||||
from the `Alphabetic property defined in the section 4.10 'Letters, Alphabetic, and
|
||||
Ideographic' of the Unicode Standard
|
||||
<https://www.unicode.org/versions/Unicode15.0.0/ch04.pdf>`_.
|
||||
<https://www.unicode.org/versions/Unicode15.1.0/ch04.pdf>`_.
|
||||
|
||||
|
||||
.. method:: str.isascii()
|
||||
|
@ -1941,7 +1941,7 @@ expression support in the :mod:`re` module).
|
|||
|
||||
The lowercasing algorithm used is
|
||||
`described in section 3.13 'Default Case Folding' of the Unicode Standard
|
||||
<https://www.unicode.org/versions/Unicode15.0.0/ch03.pdf>`__.
|
||||
<https://www.unicode.org/versions/Unicode15.1.0/ch03.pdf>`__.
|
||||
|
||||
|
||||
.. method:: str.lstrip([chars])
|
||||
|
@ -2290,7 +2290,7 @@ expression support in the :mod:`re` module).
|
|||
|
||||
The uppercasing algorithm used is
|
||||
`described in section 3.13 'Default Case Folding' of the Unicode Standard
|
||||
<https://www.unicode.org/versions/Unicode15.0.0/ch03.pdf>`__.
|
||||
<https://www.unicode.org/versions/Unicode15.1.0/ch03.pdf>`__.
|
||||
|
||||
|
||||
.. method:: str.zfill(width)
|
||||
|
|
|
@ -17,8 +17,8 @@
|
|||
|
||||
This module provides access to the Unicode Character Database (UCD) which
|
||||
defines character properties for all Unicode characters. The data contained in
|
||||
this database is compiled from the `UCD version 15.0.0
|
||||
<https://www.unicode.org/Public/15.0.0/ucd>`_.
|
||||
this database is compiled from the `UCD version 15.1.0
|
||||
<https://www.unicode.org/Public/15.1.0/ucd>`_.
|
||||
|
||||
The module uses the same names and symbols as defined by Unicode
|
||||
Standard Annex #44, `"Unicode Character Database"
|
||||
|
@ -175,6 +175,6 @@ Examples:
|
|||
|
||||
.. rubric:: Footnotes
|
||||
|
||||
.. [#] https://www.unicode.org/Public/15.0.0/ucd/NameAliases.txt
|
||||
.. [#] https://www.unicode.org/Public/15.1.0/ucd/NameAliases.txt
|
||||
|
||||
.. [#] https://www.unicode.org/Public/15.0.0/ucd/NamedSequences.txt
|
||||
.. [#] https://www.unicode.org/Public/15.1.0/ucd/NamedSequences.txt
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue