-
-
Notifications
You must be signed in to change notification settings - Fork 30.3k
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
asyncio.base_events.Server is not exposed as Asyncio.Server in early versions of 3.9 and 3.10 and all previous versions #106882
Comments
Thanks for the report. However, Python 3.10 and lower now only accept security-related fixes. The error in the docs here only affects Python 3.10 and lower, and the bug doesn't relate to a security issue, so I'm afraid we won't be fixing this at this point. |
Ok, Thanks. |
Oh wait, the history in 3.11 still needs to be corrected though, or do you disagree? @AlexWaygood |
Yes, I suppose you could add a |
Sounds good, thanks again. |
I would note that the inline history is still incorrect in the 3.11 docs by omitting the addition of this availability. Though sure, I don't expect that to reopen this issue. |
That's already been noted above, and I've already reopened the issue as a result, and @jack60612 has already submitted a PR to rectify that, which will be backported to the 3.12 and 3.11 docs |
…1+ (#106901) And later versions of 3.10, 3.9
…on 3.11+ (pythonGH-106901) And later versions of 3.10, 3.9 (cherry picked from commit 1e1f4e9) Co-authored-by: Jack Nelson <[email protected]>
…on 3.11+ (pythonGH-106901) And later versions of 3.10, 3.9 (cherry picked from commit 1e1f4e9) Co-authored-by: Jack Nelson <[email protected]>
Thanks again @jack60612! |
Documentation:
The documentation for python shows
asyncio.base_events.Server
asasyncio.Server
in all python versions, Offending Page. However, it is not exposed as such until late versions of 3.9, 3.10 and 3.11.0.Relevant Facts:
PR #31760 makes the change exposing it as
asyncio.Server
, but this only effects newer versions.My Comments:
I can make a pr adding a note to the docs, let me know what you would like me to do.
Linked PRs
asyncio.Server
is only publicly exposed on 3.11+ (GH-106901) #106902asyncio.Server
is only publicly exposed on 3.11+ (GH-106901) #106903The text was updated successfully, but these errors were encountered: