summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2015-05-22 23:38:16 (GMT)
committerRaymond Hettinger <python@rcn.com>2015-05-22 23:38:16 (GMT)
commitab89f9c27fe66b64b5907aad941d58bbc2ede14d (patch)
tree0a5a8919ce25555347c10ee93eb52261abceb904 /Doc
parentbd0d91e706974b7810eaddb25a8b169e533fcb19 (diff)
parent9ecf9e294407feaa1b01157123989dc33dcc7bef (diff)
downloadcpython-ab89f9c27fe66b64b5907aad941d58bbc2ede14d.zip
cpython-ab89f9c27fe66b64b5907aad941d58bbc2ede14d.tar.gz
cpython-ab89f9c27fe66b64b5907aad941d58bbc2ede14d.tar.bz2
merge
Diffstat (limited to 'Doc')
-rw-r--r--Doc/reference/lexical_analysis.rst3
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/reference/lexical_analysis.rst b/Doc/reference/lexical_analysis.rst
index c673791..769e0a7 100644
--- a/Doc/reference/lexical_analysis.rst
+++ b/Doc/reference/lexical_analysis.rst
@@ -632,8 +632,7 @@ for disambiguation with C-style octal literals, which Python used before version
Some examples of integer literals::
7 2147483647 0o177 0b100110111
- 3 79228162514264337593543950336 0o377 0x100000000
- 79228162514264337593543950336 0xdeadbeef
+ 3 79228162514264337593543950336 0o377 0xdeadbeef
.. _floating: