gh-140065: Lexical analysis: Correct note about leading zeros in floating point numbers (GH-140066)

This commit is contained in:
Stan Ulbrych 2025-10-15 16:15:45 +01:00 committed by GitHub
parent 728d239e57
commit 1624c646b0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1308,8 +1308,8 @@ The parts are separated by a decimal point, ``.``::
2.71828
4.0
Unlike in integer literals, leading zeros are allowed in the numeric parts.
For example, ``077.010`` is legal, and denotes the same number as ``77.10``.
Unlike in integer literals, leading zeros are allowed.
For example, ``077.010`` is legal, and denotes the same number as ``77.01``.
As in integer literals, single underscores may occur between digits to help
readability::