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-113692: skip a test if multiprocessing isn't available. #113704
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.
Looks good!
(should we set required_on
to at least one platform as typo protection?)
Thanks. Do you think that's needed for this specific issue? It seems a simple enough change. Not sure what you mean by typo protection. |
I think @hauntsaninja is suggesting we require this pass on some platform to avoid a typo in the name of the module being imported since there's no error checking the module name is legitimate (although could that check be added thanks to @vsajip I added the backport label as I think this needs to land in 3.12 as well. |
Thanks @vsajip for the PR 🌮🎉.. I'm working now to backport this PR to: 3.12. |
…honGH-113704) (cherry picked from commit 842b738) Co-authored-by: Vinay Sajip <[email protected]>
GH-113844 is a backport of this pull request to the 3.12 branch. |
Yup, that's what I meant :-) Looks like sys.stdlib_module_names won't do the trick, it doesn't include things like |
Perhaps |
Yeah, I took Brett's suggestion to mean we add a check against |
test_logging
's test_111615 fails under WASI #113692