diff options
author | Georg Brandl <georg@python.org> | 2008-01-22 07:53:31 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-01-22 07:53:31 (GMT) |
commit | 953e1ee8f4f2522961b94c57a4c521fb041af228 (patch) | |
tree | 05b50d906c5429f926ad5c0555db166e5923c735 /Doc | |
parent | 95cd5c0b72db09426f96c8e5716404da01048f93 (diff) | |
download | cpython-953e1ee8f4f2522961b94c57a4c521fb041af228.zip cpython-953e1ee8f4f2522961b94c57a4c521fb041af228.tar.gz cpython-953e1ee8f4f2522961b94c57a4c521fb041af228.tar.bz2 |
Fix \xhh specs, #1889.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/reference/lexical_analysis.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/lexical_analysis.rst b/Doc/reference/lexical_analysis.rst index 7857887..e449fd7 100644 --- a/Doc/reference/lexical_analysis.rst +++ b/Doc/reference/lexical_analysis.rst @@ -530,7 +530,7 @@ Notes: As in Standard C, up to three octal digits are accepted. (4) - Unlike in Standard C, at most two hex digits are accepted. + Unlike in Standard C, exactly two hex digits are required. (5) In a string literal, hexadecimal and octal escapes denote the byte with the |