summaryrefslogtreecommitdiffstats
path: root/Doc/reference
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2015-05-22 23:37:49 (GMT)
committerRaymond Hettinger <python@rcn.com>2015-05-22 23:37:49 (GMT)
commit9ecf9e294407feaa1b01157123989dc33dcc7bef (patch)
treec3c3d4702e9fde1e06ab84aa5dec7f16fc81a925 /Doc/reference
parent08d230a5408e9fac3adbb357f5fb4a43958991d4 (diff)
downloadcpython-9ecf9e294407feaa1b01157123989dc33dcc7bef.zip
cpython-9ecf9e294407feaa1b01157123989dc33dcc7bef.tar.gz
cpython-9ecf9e294407feaa1b01157123989dc33dcc7bef.tar.bz2
Issue #24219: Remove duplicate literal in docs.
Diffstat (limited to 'Doc/reference')
-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 2bf66b1..373be16 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: