-
-
Couldn't load subscription status.
- Fork 33.2k
Link to correct class methods in asyncio primitives docs #127270
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
Link to correct class methods in asyncio primitives docs #127270
Conversation
The documentation for asyncio Condition and Barrier links to :meth:`wait` and :meth:`wait_for`. This resolves to asyncio.wait and asyncio.wait_for instead of the respective class methods. Changing to eg :meth:`~Condition.wait` fixes this.
|
Thanks @ollanta for the PR, and @kumaraditya303 for merging it 🌮🎉.. I'm working now to backport this PR to: 3.12, 3.13. |
…7270) (cherry picked from commit 15d6506) Co-authored-by: Ollanta Cuba Gyllensten <[email protected]>
|
Sorry, @ollanta and @kumaraditya303, I could not cleanly backport this to |
|
GH-127423 is a backport of this pull request to the 3.13 branch. |
…27270) (#127423) Link to correct class methods in asyncio primitives docs (GH-127270) (cherry picked from commit 15d6506) Co-authored-by: Ollanta Cuba Gyllensten <[email protected]>
This comment was marked as resolved.
This comment was marked as resolved.
|
GH-127438 is a backport of this pull request to the 3.12 branch. |
The documentation for asyncio Condition and Barrier links to :meth:
waitand :meth:wait_for. This resolves toasyncio.waitandasyncio.wait_forinstead of the respective class methods.Changing this to eg :meth:
~Condition.waitfixes the issue.📚 Documentation preview 📚: https://cpython-previews--127270.org.readthedocs.build/