diff options
author | James Gerity <snoopjedi@gmail.com> | 2023-09-20 05:07:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-20 05:07:47 (GMT) |
commit | def828995a35a289c9f03500903b5917df93465f (patch) | |
tree | 775572a1b8bcf3707b41aac832a5bfe456dc34f5 /Doc/reference/lexical_analysis.rst | |
parent | 1293fcc3c6b67b7e8d0081863ec6387e162341eb (diff) | |
download | cpython-def828995a35a289c9f03500903b5917df93465f.zip cpython-def828995a35a289c9f03500903b5917df93465f.tar.gz cpython-def828995a35a289c9f03500903b5917df93465f.tar.bz2 |
fixes gh-109559: Update `unicodedata` for Unicode 15.1.0 (GH-109560)
---------
Co-authored-by: Benjamin Peterson <benjamin@python.org>
Diffstat (limited to 'Doc/reference/lexical_analysis.rst')
-rw-r--r-- | Doc/reference/lexical_analysis.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/reference/lexical_analysis.rst b/Doc/reference/lexical_analysis.rst index 83cd440..41f12fd 100644 --- a/Doc/reference/lexical_analysis.rst +++ b/Doc/reference/lexical_analysis.rst @@ -315,7 +315,7 @@ The Unicode category codes mentioned above stand for: * *Nd* - decimal numbers * *Pc* - connector punctuations * *Other_ID_Start* - explicit list of characters in `PropList.txt - <https://www.unicode.org/Public/15.0.0/ucd/PropList.txt>`_ to support backwards + <https://www.unicode.org/Public/15.1.0/ucd/PropList.txt>`_ to support backwards compatibility * *Other_ID_Continue* - likewise @@ -323,8 +323,8 @@ All identifiers are converted into the normal form NFKC while parsing; compariso of identifiers is based on NFKC. A non-normative HTML file listing all valid identifier characters for Unicode -15.0.0 can be found at -https://www.unicode.org/Public/15.0.0/ucd/DerivedCoreProperties.txt +15.1.0 can be found at +https://www.unicode.org/Public/15.1.0/ucd/DerivedCoreProperties.txt .. _keywords: @@ -1045,4 +1045,4 @@ occurrence outside string literals and comments is an unconditional error: .. rubric:: Footnotes -.. [#] https://www.unicode.org/Public/15.0.0/ucd/NameAliases.txt +.. [#] https://www.unicode.org/Public/15.1.0/ucd/NameAliases.txt |