diff options
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2010-12-22 01:37:36 (GMT) |
---|---|---|
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2010-12-22 01:37:36 (GMT) |
commit | 1a7a2e03b26cc75a5346ff4ada90ee64d205a3b5 (patch) | |
tree | bf4f7a2f0fc2340537808243dfd317fa88235689 /Doc/reference/lexical_analysis.rst | |
parent | 8d855d83046dd8a55cd216e642470191e6eab55f (diff) | |
download | cpython-1a7a2e03b26cc75a5346ff4ada90ee64d205a3b5.zip cpython-1a7a2e03b26cc75a5346ff4ada90ee64d205a3b5.tar.gz cpython-1a7a2e03b26cc75a5346ff4ada90ee64d205a3b5.tar.bz2 |
Both PEP 3131 and the current implementation use NFKC normalization
for identifiers. Fixed the documentation to agree.
Diffstat (limited to 'Doc/reference/lexical_analysis.rst')
-rw-r--r-- | Doc/reference/lexical_analysis.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/reference/lexical_analysis.rst b/Doc/reference/lexical_analysis.rst index 51a291e..9fdb350 100644 --- a/Doc/reference/lexical_analysis.rst +++ b/Doc/reference/lexical_analysis.rst @@ -309,8 +309,8 @@ The Unicode category codes mentioned above stand for: * *Nd* - decimal numbers * *Pc* - connector punctuations -All identifiers are converted into the normal form NFC while parsing; comparison -of identifiers is based on NFC. +All identifiers are converted into the normal form NFKC while parsing; comparison +of identifiers is based on NFKC. A non-normative HTML file listing all valid identifier characters for Unicode 4.1 can be found at |