diff options
author | Nikita Sobolev <mail@sobolevn.me> | 2024-04-29 11:16:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-29 11:16:51 (GMT) |
commit | 23d0371bb99b1df183c36883e256f82fdf6a4bea (patch) | |
tree | 96bf476c7a287c4c5adf103c4bd98dcd696fd079 | |
parent | 3c39f335cb7972937465560f510f53bc7772ac06 (diff) | |
download | cpython-23d0371bb99b1df183c36883e256f82fdf6a4bea.zip cpython-23d0371bb99b1df183c36883e256f82fdf6a4bea.tar.gz cpython-23d0371bb99b1df183c36883e256f82fdf6a4bea.tar.bz2 |
Uncomment one grammar test (#118361)
-rw-r--r-- | Lib/test/test_grammar.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_grammar.py b/Lib/test/test_grammar.py index 8501006..c72f438 100644 --- a/Lib/test/test_grammar.py +++ b/Lib/test/test_grammar.py @@ -164,7 +164,7 @@ class TokenTests(unittest.TestCase): x = 3.14 x = 314. x = 0.314 - # XXX x = 000.314 + x = 000.314 x = .314 x = 3e14 x = 3E14 |