-
-
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-77393: Add --statistics
opt to msgfmt.py
#132136
base: main
Are you sure you want to change the base?
Conversation
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'd also add a test for multiple input files
For multiple input it works like so:
Is this the format we want (It is not the best, but then again the current situation is poor since it just silently passes anyway)? I cannot compare to |
Just an idea, but maybe prefix each line with the filename in case more than one file is given? |
I considered that, but then again do we also want that for single files, otherwise there is an even more complex printing system ;-) This will then be inconsistent with GNU msgfmt |
no, just when more than one file is given, so that it's consistent w/ GNU but still useful in the other case. |
I think I need to fix something. I will look into it tomorrow, it seems off. |
# Multiple input files | ||
res = assert_python_ok(msgfmt, '--statistics', '-o', 'temp.mo', data_dir / "general.po", data_dir / "fuzzy.po") | ||
out = res.out.decode('utf-8').strip() | ||
self.assertIn('general.po: 8 translated messages, 1 untranslated message.', out) | ||
self.assertIn('fuzzy.po: 0 translated messages.', out) |
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.
Also a test for #53950 :-) Do we want a separate test too?
This PR also covers #53950
cc @tomasr8