Uh oh!
There was an error while loading. Please reload this page.
bpo-46679: Don't ignore timeout argument in test.support.wait_process. - #31205
Closed
notarealdeveloper wants to merge 3 commits into
Closed
bpo-46679: Don't ignore timeout argument in test.support.wait_process.#31205notarealdeveloper wants to merge 3 commits into
notarealdeveloper wants to merge 3 commits into
Conversation
| @@ -0,0 +1,2 @@ | |||
| The function ``wait_process`` in ``Lib/test/support/__init__.py`` no longer | |||
Member
There was a problem hiding this comment.
NEWS are not required for test-only changes. We need them for user-facing changes only 🙂
ContributorAuthor
There was a problem hiding this comment.
Good to know! Thanks! :)
notarealdeveloper
commented
May 23, 2022
ContributorAuthor
@kumaraditya303 Done. :) |
MaxwellDupre
commented
Oct 1, 2022
Contributor
The wait_process function has changed significantly since your changes in the latest 3.12 could you please check? |
vstinner
commented
Oct 3, 2022
Member
I fixed this issue with commit 0ba8027. But IMO it's still interesting to fix this typo in Python 3.10 and 3.11. Can you please create a PR for the 3.11 branch? |
kumaraditya303
commented
Nov 29, 2022
Contributor
Closing as it is fixed on main. If you are interested, feel free to create 3.11 backport as Victor suggested. |
vstinner
commented
Nov 29, 2022
Member
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The function
wait_processinLib/test/support/__init__.pyignores itstimeoutargument. This argument is useful, for example, in tests that need to determine whether a deadlock has been fixed (e.g., the test added in #30310).https://bugs.python.org/issue46679