bpo-28724: Move socket.send_fds and socket.recv_fds documentation to the "Other functions" section#22608
Merged
methane merged 3 commits intopython:masterfrom Apr 22, 2021
Merged
Conversation
jstasiak
approved these changes
Nov 1, 2020
Contributor
jstasiak
left a comment
There was a problem hiding this comment.
Looks reasonable to me!
|
This PR is stale because it has been open for 30 days with no activity. |
…the "Other functions" section
2c461f7 to
0c875b3
Compare
Contributor
|
Thanks @gousaiyang for the PR, and @methane for merging it 🌮🎉.. I'm working now to backport this PR to: 3.8, 3.9. |
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this pull request
Apr 22, 2021
…t section (pythonGH-22608) (cherry picked from commit 660592f) Co-authored-by: Saiyang Gou <gousaiyang@163.com>
|
GH-25517 is a backport of this pull request to the 3.9 branch. |
Contributor
|
Sorry, @gousaiyang and @methane, I could not cleanly backport this to |
Contributor
Author
|
We don't need to backport this to 3.8 as those features are 3.9+. |
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 free
to 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.
Move
socket.send_fdsandsocket.recv_fdsdocumentation to the "Other functions" section, since they are module-level functions rather than methods of socket objects. Putting them in the "Socket Objects" section would make people incorrectly think that they are methods of socket objects, which is confusing.https://bugs.python.org/issue28724