[Python-checkins] r60193 - python/trunk/Doc/reference/lexical_analysis.rst

georg.brandl python-checkins at python.org
Tue Jan 22 08:53:32 CET 2008


Author: georg.brandl
Date: Tue Jan 22 08:53:31 2008
New Revision: 60193

Modified:
   python/trunk/Doc/reference/lexical_analysis.rst
Log:
Fix \xhh specs, #1889.


Modified: python/trunk/Doc/reference/lexical_analysis.rst
==============================================================================
--- python/trunk/Doc/reference/lexical_analysis.rst	(original)
+++ python/trunk/Doc/reference/lexical_analysis.rst	Tue Jan 22 08:53:31 2008
@@ -530,7 +530,7 @@
    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


More information about the Python-checkins mailing list