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

georg.brandl python-3000-checkins at python.org
Wed Apr 9 20:46:46 CEST 2008


Author: georg.brandl
Date: Wed Apr  9 20:46:46 2008
New Revision: 62254

Modified:
   python/branches/py3k/Doc/reference/lexical_analysis.rst
Log:
#2575: bininteger missing in production list.


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	Wed Apr  9 20:46:46 2008
@@ -587,7 +587,7 @@
 Integer literals are described by the following lexical definitions:
 
 .. productionlist::
-   integer: `decimalinteger` | `octinteger` | `hexinteger`
+   integer: `decimalinteger` | `octinteger` | `hexinteger` | `bininteger`
    decimalinteger: `nonzerodigit` `digit`* | "0"+
    nonzerodigit: "1"..."9"
    digit: "0"..."9"


More information about the Python-3000-checkins mailing list