diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2010-03-15 13:14:39 (GMT) |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2010-03-15 13:14:39 (GMT) |
commit | 4e0f8910bf4894727778b183b05e0c7306bb1ede (patch) | |
tree | 708fb2f37824519d5ac574c9af18bfec1279c414 | |
parent | 9550aa1c8146d0c480c1164215418bb21d6a3c3e (diff) | |
download | cpython-4e0f8910bf4894727778b183b05e0c7306bb1ede.zip cpython-4e0f8910bf4894727778b183b05e0c7306bb1ede.tar.gz cpython-4e0f8910bf4894727778b183b05e0c7306bb1ede.tar.bz2 |
Fix \xhh specs, #1889. (an oversight of r60193, r60210).
-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 ab1b7f5..7df0c2b 100644 --- a/Doc/reference/lexical_analysis.rst +++ b/Doc/reference/lexical_analysis.rst @@ -503,7 +503,7 @@ Notes: As in Standard C, up to three octal digits are accepted. (2) - Unlike in Standard C, at most two hex digits are accepted. + Unlike in Standard C, exactly two hex digits are required. (3) In a bytes literal, hexadecimal and octal escapes denote the byte with the |