https://github.com/python/cpython/commit/29be35c0ab9495d75e283c15335eafe1b5e20fa8 commit: 29be35c0ab9495d75e283c15335eafe1b5e20fa8 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: sobolevn <[email protected]> date: 2024-05-02T06:03:49Z summary:
[3.12] Uncomment one grammar test (GH-118361) (#118385) Uncomment one grammar test (GH-118361) (cherry picked from commit 23d0371bb99b1df183c36883e256f82fdf6a4bea) Co-authored-by: Nikita Sobolev <[email protected]> files: M Lib/test/test_grammar.py diff --git a/Lib/test/test_grammar.py b/Lib/test/test_grammar.py index 8501006b799262..c72f4387108ca8 100644 --- a/Lib/test/test_grammar.py +++ b/Lib/test/test_grammar.py @@ -164,7 +164,7 @@ def test_floats(self): x = 3.14 x = 314. x = 0.314 - # XXX x = 000.314 + x = 000.314 x = .314 x = 3e14 x = 3E14 _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
