-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gh-109546: Add more tests for formatting floats and fractions #109548
gh-109546: Add more tests for formatting floats and fractions #109548
Conversation
serhiy-storchaka
commented
Sep 18, 2023
•
edited by bedevere-app
bot
Loading
edited by bedevere-app
bot
- Issue: Add more tests for formatting floats and fractions #109546
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would prefer to not load test_float in test_fractions just to get a filename.
Lib/test/test_fractions.py
Outdated
@@ -1220,6 +1220,30 @@ def test_invalid_formats(self): | |||
with self.assertRaises(ValueError): | |||
format(fraction, spec) | |||
|
|||
@requires_IEEE_754 | |||
def test_float_format_testfile(self): | |||
from test.test_float import format_testfile |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would prefer to just copy/paste the code to get the path here:
format_testfile = os.path.join(test_dir, 'formatfloat_testcases.txt')
I prefer to not make tests inter-dependents. Sometimes, just importing a test has side effects.
continue | ||
line = line.strip() | ||
if not line: | ||
continue |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I suppose that such logic is used in other files using formatfloat_testcases.txt. Is there a good place to share common code?
If we add mathdata/, can we add a helper function there which would iterate on the file and strip comments?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was going to add it in test_float
, but it is simple enough, so I just copied it.
if fmt == '%r': | ||
continue | ||
with self.subTest(fmt=fmt, arg=arg): | ||
f = F(float(arg)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe add a variable for fmt[1:]
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
18c9aab
to
22245e4
Compare
+1 for the idea, and code changes LGTM. |
Thanks @serhiy-storchaka for the PR 🌮🎉.. I'm working now to backport this PR to: 3.12. |
…ythonGH-109548) (cherry picked from commit beb5ec5) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
GH-109557 is a backport of this pull request to the 3.12 branch. |
|
|
|
Thanks @serhiy-storchaka for the PR 🌮🎉.. I'm working now to backport this PR to: 3.11. |
Sorry, @serhiy-storchaka, I could not cleanly backport this to |
Oh. I tried to backport this change to 3.11 to prepare backporting PR #109512 to 3.11 and 3.12, but the fractions module doesn't support all formatting syntax in 3.11:
So this change cannot be backported. |
(cherry picked from commit beb5ec5)
GH-109685 is a backport of this pull request to the 3.11 branch. |
I partially backported the change to 3.11: only test_float changes. |