diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2024-07-19 09:13:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-19 09:13:08 (GMT) |
commit | a45d9051ed8488b169cbcb12b036120c0e853b9c (patch) | |
tree | 7d442b10ef935a9985059da5691241f965592447 /Lib/test/test_tokenize.py | |
parent | 225cbee8d8ced55c2edb16f9cdc73cd05bf0f67b (diff) | |
download | cpython-a45d9051ed8488b169cbcb12b036120c0e853b9c.zip cpython-a45d9051ed8488b169cbcb12b036120c0e853b9c.tar.gz cpython-a45d9051ed8488b169cbcb12b036120c0e853b9c.tar.bz2 |
[3.13] gh-121905: Consistently use "floating-point" instead of "floating point" (GH-121907) (GH-122012)
(cherry picked from commit 1a0c7b9ba48a2dffb70bb0c7327abae1d3e87356)
Diffstat (limited to 'Lib/test/test_tokenize.py')
-rw-r--r-- | Lib/test/test_tokenize.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_tokenize.py b/Lib/test/test_tokenize.py index 51aeb35..de0e0b4 100644 --- a/Lib/test/test_tokenize.py +++ b/Lib/test/test_tokenize.py @@ -228,7 +228,7 @@ def k(x): """) def test_float(self): - # Floating point numbers + # Floating-point numbers self.check_tokenize("x = 3.14159", """\ NAME 'x' (1, 0) (1, 1) OP '=' (1, 2) (1, 3) |