diff options
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2010-12-22 01:55:15 (GMT) |
---|---|---|
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2010-12-22 01:55:15 (GMT) |
commit | a79a6765ce32f2112e4002dd3a970828cb2ccf50 (patch) | |
tree | 0d4d874549668e7d7e7489f217a0935594289a26 /Doc | |
parent | 30f9c8c68459466813a438a3511b5c9a8ba0d9a5 (diff) | |
download | cpython-a79a6765ce32f2112e4002dd3a970828cb2ccf50.zip cpython-a79a6765ce32f2112e4002dd3a970828cb2ccf50.tar.gz cpython-a79a6765ce32f2112e4002dd3a970828cb2ccf50.tar.bz2 |
Merged revisions 87433 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r87433 | alexander.belopolsky | 2010-12-21 20:37:36 -0500 (Tue, 21 Dec 2010) | 3 lines
Both PEP 3131 and the current implementation use NFKC normalization
for identifiers. Fixed the documentation to agree.
........
Diffstat (limited to 'Doc')
-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 |