[Python-checkins] r78977 - python/branches/py3k/Doc/reference/lexical_analysis.rst

florent.xicluna python-checkins at python.org
Mon Mar 15 14:14:39 CET 2010


Author: florent.xicluna
Date: Mon Mar 15 14:14:39 2010
New Revision: 78977

Log:
Fix \xhh specs, #1889.  (an oversight of r60193, r60210).


Modified:
   python/branches/py3k/Doc/reference/lexical_analysis.rst

Modified: python/branches/py3k/Doc/reference/lexical_analysis.rst
==============================================================================
--- python/branches/py3k/Doc/reference/lexical_analysis.rst	(original)
+++ python/branches/py3k/Doc/reference/lexical_analysis.rst	Mon Mar 15 14:14:39 2010
@@ -503,7 +503,7 @@
    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


More information about the Python-checkins mailing list