[Python-checkins] cpython (3.4): Issue #24219: Remove duplicate literal in docs.

raymond.hettinger python-checkins at python.org
Sat May 23 01:38:21 CEST 2015


https://hg.python.org/cpython/rev/645a03e93008
changeset:   96220:645a03e93008
branch:      3.4
parent:      96204:c7b9645a6f35
user:        Raymond Hettinger <python at rcn.com>
date:        Fri May 22 16:37:49 2015 -0700
summary:
  Issue #24219: Remove duplicate literal in docs.

files:
  Doc/reference/lexical_analysis.rst |  3 +--
  1 files changed, 1 insertions(+), 2 deletions(-)


diff --git a/Doc/reference/lexical_analysis.rst b/Doc/reference/lexical_analysis.rst
--- a/Doc/reference/lexical_analysis.rst
+++ b/Doc/reference/lexical_analysis.rst
@@ -632,8 +632,7 @@
 Some examples of integer literals::
 
    7     2147483647                        0o177    0b100110111
-   3     79228162514264337593543950336     0o377    0x100000000
-         79228162514264337593543950336              0xdeadbeef
+   3     79228162514264337593543950336     0o377    0xdeadbeef
 
 
 .. _floating:

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list